Largest palindrome product | Project Euler Solution

Featured image

Largest palindrome product

Problem Statement:

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.

You can find the original question here -> Project Euler

Largest palindrome product - Project Euler Solution in Python

def largestPalindrome(bot, top):
    z = 0
    for i in range(top, bot, -1):
        for j in range(top, bot, -1):
            if isPalindrome(i*j):                
                if i * j > z:
                    z = i * j
    return z
    
def isPalindrome(num):
    return str(num) == str(num)[::-1]

print(largestPalindrome(100,999))

Explanation

Complexity Analysis

Share Your Solutions for the Largest palindrome product