Problem4
This commit is contained in:
parent
4599d7be12
commit
266dd95a41
7
src/problem4.py
Normal file
7
src/problem4.py
Normal file
@ -0,0 +1,7 @@
|
||||
result = 0
|
||||
|
||||
for i in range(100, 999):
|
||||
for j in range(100, 999):
|
||||
if str(i * j) == str(i * j)[::-1] and i * j > result: result = i * j
|
||||
|
||||
print(result)
|
Loading…
Reference in New Issue
Block a user