The following is the Lychrel test.
Start with any positive number. Add the number with the number formed by reversing its digits. Is the sum a palindrome? If not, repeat the process.
For most numbers, a palindrome is produced after a few iterations (7 or fewer) of the process above. Numbers that never reach a palindrome are called Lychrel numbers. No number in base 10 has been proven to be a Lychrel number, but numbers that don't produce palindromes after an unusually high number of iterations of the reverse-and-add process are said to be Lychrel candidates
Create a function that takes a number and returns True if it is a Lychrel candidate. If it isn't, return the number of reverse-and-add iterations it takes to produce a palindrome. For this challenge, the threshold for a Lychrel candidate is >=500 iterations.
lychrel(33) ➞ 0
# Already a palindrome.
lychrel(65) ➞ 1
# 65+56 -> 121
lychrel(348) ➞ 3
# 348+843 -> 1191+1911 -> 3102+2013 -> 5115
lychrel(295) ➞ True
N/A