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