摘要: 解决这个问题的关键在于,判断结束遍历的条件,即当n!=1 或者 在循环过程中,没有出现过重复的数。 class Solution: def isHappy(self, n: int) -> bool: def get_score(n): sum_ = 0 while n > 0: end_ = n 阅读全文
posted @ 2024-08-29 09:39 TW-NLP 阅读(7) 评论(0) 推荐(0) 编辑