-
Notifications
You must be signed in to change notification settings - Fork 0
/
p004.py
13 lines (12 loc) · 932 Bytes
/
p004.py
1
2
3
4
5
6
7
8
9
10
11
12
13
################################################################################
# P4: Largest palindrome product #
################################################################################
# #
# Find the largest palindrome made from the product of two 3-digit numbers. #
# #
################################################################################
# Problem found at projecteuler.net #
# Author: ncfgrill #
################################################################################
print('Largest:', max(i * j for i in range(100, 1000) for j in range(100, 1000)\
if str(i*j) == str(i*j)[::-1]))