09.08.2016, 00:00
Basically, take the first four digits for example:
1*2, 9*2, etc..
So starting at 1, multiply every other number by 2, but, if like 9*2 it's a 2-digit number, like 18, you'd do 1+8 to make a single digit number(9).
The mathematics is simple enough, just converting it to pawn. A way I thought of would be to offset the array?
Код:
1 4 9 6
So starting at 1, multiply every other number by 2, but, if like 9*2 it's a 2-digit number, like 18, you'd do 1+8 to make a single digit number(9).
The mathematics is simple enough, just converting it to pawn. A way I thought of would be to offset the array?