You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if math.floor(nmbr/10000) == nmbr%10 and math.floor((nmbr%10000)/1000) == math.floor((nmbr%100)/10):
return True
elif nmbr < 1000000:
if math.floor(nmbr/100000) == nmbr%10 and math.floor((nmbr%100000)/10000) == math.floor((nmbr%100)/10) and math.floor((nmbr%10000)/1000) == math.floor((nmbr%1000)/100):
return True
lrgst = 0
#only checks numbers between 900 and 1000 since these are the biggest