class Solution(object):
# def largestPalindrome(self, n):
# """
# :type n: int
# :rtype: int
# """
# if n == 1:
# return 9
# # https://leetcode.com/problems/largest-palindrome-product/discuss/96297/Java-Solution-using-assumed-max-palindrom
# upperBound = 10 ** n - 1
# lowerBound = upperBound / 10
# maxNum = upperBound * upperBound
# firstHalf = maxNum / (10 ** n)
# palindromFound = False
# palindrom = 0
# while not palindromFound:
# palindrom = int(str(firstHalf) + str(firstHalf)[::-1])
# for i in xrange(upperBound, lowerBound, -1):
# if i * i < palindrom:
# break
# if palindrom % i == 0:
# palindromFound = True
# break
# firstHalf -= 1
# return palindrom % 1337
def largestPalindrome(self, n):
# https://leetcode.com/problems/largest-palindrome-product/discuss/96305/Python-Solution-Using-Math-In-48ms
# https://leetcode.com/problems/largest-palindrome-product/discuss/96294/could-any-python-experts-share-their-codes-within-100ms
if n == 1:
return 9
for a in xrange(2, 9 * 10 ** (n - 1)):
hi = (10 ** n) - a
lo = int(str(hi)[::-1])
if a ** 2 - 4 * lo < 0:
continue
if (a ** 2 - 4 * lo) ** .5 == int((a ** 2 - 4 * lo) ** .5):
return (lo + 10 ** n * (10 ** n - a)) % 1337
Download Largest Palindrome Product.pyLeetcode 479 Largest Palindrome Product problem solution in python3 with explanation. This is the best place to expand your knowledge and get prepared for your next interview.
Feedback is the most important part of any website.
If you have any query, suggestion or feedback, Please feel free to contact us.