1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-16 20:56:57 +02:00
CodeWars/7kyu/palindrome_chain_length/solution.py

11 lines
161 B
Python
Raw Normal View History

def palindrome_chain_length(n):
c = 0
r = int(str(n)[::-1])
while n != r:
n += r
r = int(str(n)[::-1])
c += 1
return c