Given a random number:
- C#: long;
- C++: unsigned long;
You have to return the digits of this number within an array in reverse order.
348597 => [7,9,5,8,4,3]
Given a random number:
You have to return the digits of this number within an array in reverse order.
348597 => [7,9,5,8,4,3]