Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 273 Bytes

README.md

File metadata and controls

13 lines (8 loc) · 273 Bytes

Given a non-negative integer, return an array / a list of the individual digits in order.

Examples:

123 => [1,2,3]

1 => [1]

8675309 => [8,6,7,5,3,0,9]