Files
PS/leetcode/202.py
Gyubin Han dede0dca01 leetcode
2025-02-19 14:09:55 +09:00

14 lines
307 B
Python

class Solution:
def isHappy(self, n: int) -> bool:
s=str(n)
while not len(s)==1:
r=0
for i in range(len(s)):
r+=int(s[i])**2
s=str(r)
if s=="1" or s=="7":
return True
else:
return False