Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 218 Bytes

Convert number to reversed array of digits.md

File metadata and controls

9 lines (6 loc) · 218 Bytes

You have to return the digits of this number within an array in reverse order.

Example:

348597 => [7,9,5,8,4,3]

solution