say i have
var i = 987654321;
Is there an easy way to get an array of the digits, the equivalent of:
var is = new int[] { 9, 8, 7, 6, 5, 4, 3, 2, 1 };
without .ToString()ing and iterating over the chars with int.Parse(x)?
|
|
say i have
Is there an easy way to get an array of the digits, the equivalent of:
without
|
||||||||||||||||
|
|
|
Alternative without recursion:
|
||||||||||
|
|
|
I know there has been an accepted answer, and probably better ones than this, but here is another version: Using
|
||||
|
|
|
This does convert to string and iterate over the characters, but it does it sort of automatically and in a one-liner:
|
||||
|
|
|
Another alternative which don't uses recursion and uses a Stack that avoids reallocation on every insert (at least for the first 32 digits):
And yes, this method also works for 0 and negative numbers. Interestingly, give this algorithm a negative number -123456 and you will get {-1, -2, -3, -4, -5, -6} Update: switched from using List to Stack since this automatically gives the correct order. |
||||
|
|
|
|
||||||
|
|
|
In short: use loop which divide number modulo 10 (%) to get reminder (each digit) and put it into array. |
||
|
|