Project Euler: Problem 4

https://projecteuler.net/problem=4

A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 × 99.

Find the largest palindrome made from the product of two 3-digit numbers.


In [3]:
bigpal=0
for x in range(100, 1000):
    for y in range(100, 1000):
        if str(x*y)==str(x*y)[::-1] and x*y>bigpal:
            bigpal=x*y
print(bigpal)


906609

In [ ]:
# This cell will be used for grading, leave it at the end of the notebook.