wes d2a2ba9e15 first commit | 4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago | |
code.cpp | 4 years ago | |
unitTest.cpp | 4 years ago |
by Helen Yu tags: arrays, loops
Create a function that takes a number as an argument and returns an array of numbers counting down from this number to zero. Examples countdown(5) ➞ [5, 4, 3, 2, 1, 0] countdown(1) ➞ [1, 0] countdown(0) ➞ [0] Notes The argument will always be greater than or equal to zero.
Create a function that takes a number as an argument and returns an array of numbers counting down from this number to zero.
countdown(5) ➞ [5, 4, 3, 2, 1, 0]
countdown(1) ➞ [1, 0]
countdown(0) ➞ [0]
The argument will always be greater than or equal to zero.