This commit is contained in:
t3xhno 2024-02-06 15:07:54 +01:00
parent 4599d7be12
commit 266dd95a41

7
src/problem4.py Normal file
View 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)