275 410 821 643 286
We all know that the solution will not be unique so
please look for the simplest answer.
Start with 27, double it, keep doubling, take the digits 3 at a time.
275 410 821 643 286 417 283 456 691 213
----
x = [str(27*2**i) for i in range(0,10)]
y = ''.join(x)
for i in range(10):
print(y[3*i:3*i+3], end=' ')
|
Posted by Larry
on 2025-02-15 19:50:58 |