Zero That Out

Modified from the 2015 CCC Sr. Competition

πŸ‘ˆπŸ» Back to the lesson

Your boss has asked you to add up a sequence of positive numbers to determine how much money your company made last year. Unfortunately, your boss reads out numbers incorrectly from time to time.

Fortunately, your boss realizes when an incorrect number is read and says β€œzero”, meaning β€œignore the current last number.” Unfortunately, your boss can make repeated mistakes, and says β€œzero” for each mistake.

For example, your boss may say β€œOne, three, five, four, zero, zero, seven, zero, zero, six”, which means the total is 7 as explained in the following chart:

At any point, your boss will have said at least as many positive numbers as β€œzero” statements. If all positive numbers have been ignored, the sum is zero.

File Specification

/**

Β * Author: Mr. Squirrel

Β * Date: Feb. 2025

Β * Description: Zero That Out (Sr. CCC 2015)

Β **/

'use strict';

Input Specification:

The command-line will contain a non-empty list of positive integers, or zero, which are the values your boss will β€œsay”.
Example:Β  ./zero.js 18 3 5 24 0 0 17 0 0 6

Output Specification:

The output is one line, containing the integer which is the correct sum of the integers read, taking the β€œzero” statements into consideration.

Examples:

./zero.js 3 0 4 0 5 4 5 0 0 1 0 0 9 0

0

./zero.js 8 1 0 9 0 7 4 0 0 1

9


⬅️ Back to the lesson