Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 443 Bytes

File metadata and controls

18 lines (11 loc) · 443 Bytes

Print numbers with steps

Instructions

Given positive integer n and integer step implement a function which returns a list representing all numbers from n to 1 taking step into consideration. If n value is zero then empty list should be returned.

challenge | solution

Examples

printNumber(0, 1) // []

printNumber(6, 1) // [6, 5, 4, 3, 2, 1]

printNumber(6, 2) // [6, 4, 2]