标签:sha col add ash span turn nbsp 内存 ==
别人好聪明,为什么我只能想到思路但是却实现不出来。。。。
还是得多做才会吧
class Solution: def isHappy(self, n: int) -> bool: n=str(n) v=set() while 1: n=str(sum(int(i)**2 for i in n)) if n==‘1‘: return True if n in v: return False v.add(n)
while 1:
标签:sha col add ash span turn nbsp 内存 ==
原文地址:https://www.cnblogs.com/taoyuxin/p/11613859.html