mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
11 lines
161 B
Python
11 lines
161 B
Python
|
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
|