leetcood學習筆記-202-快樂數

題目描述: 方法一:比較笨的辦法,根據題意,如果變成1返回True,如果出現重複返回False 看到下面有位朋友用的是dict,我用了list,兩個都跑了一下似乎list快一點? class Solution: def isHappy(self, n: int) -> bool: l = [] while True: l.append
相關文章
相關標籤/搜索