Hellow There !!
I'm trying to build a function which counts in reverse :
for example i want to count from 000000000​1 in the following order
000000000​1 // 000000000​2 // 000000000​3 etc
the problem is on the big numbers because it needs to substitute one zero and start adding on it .
like so :
000000001​1 / eleven
0000000200 / two hundred
increment untill it reaches to
9999999999
any idea of how doing that ? , i'm not requesting full code , just "ideas" / "ways" to do it .
Thanks .
I'm trying to build a function which counts in reverse :
for example i want to count from 000000000​1 in the following order
000000000​1 // 000000000​2 // 000000000​3 etc
the problem is on the big numbers because it needs to substitute one zero and start adding on it .
like so :
000000001​1 / eleven
0000000200 / two hundred
increment untill it reaches to
9999999999
any idea of how doing that ? , i'm not requesting full code , just "ideas" / "ways" to do it .
Thanks .
Comment