You are viewing a single comment's thread. Return to all comments →
100points/- python3
end_palindromes=[] def ispalindrome(x): x=str(x) return x==x[::-1] n=int(input()) for i in range(1,n+1): iteration=0 while iteration<60: if ispalindrome(i): end_palindromes.append(i) break i+=int(str(i)[::-1]) iteration+=1 max_count=0 for i in sorted(set(end_palindromes)): y=end_palindromes.count(i) if y>max_count: answer=i max_count=y print(answer,max_count)
Seems like cookies are disabled on this browser, please enable them to open this website
Project Euler #55: Lychrel numbers
You are viewing a single comment's thread. Return to all comments →
100points/- python3