Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 225 Bytes

90-digitize.md

File metadata and controls

9 lines (7 loc) · 225 Bytes

Problem:

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]

Solution