摘要: 202. Happy Number 最终平方和为1则为快乐肥宅数!循环过程中可建立一个数组,存储中间结果。 1 class Solution(object): 2 def isHappy(self, n): 3 """ 4 :type n: int 5 :rtype: bool 6 """ 7 re 阅读全文
posted @ 2018-10-26 19:47 adminyzz 阅读(127) 评论(0) 推荐(0) 编辑