Skip to content

Latest commit

 

History

History
61 lines (45 loc) · 1.69 KB

202-happy-number.md

File metadata and controls

61 lines (45 loc) · 1.69 KB

202. Happy Number - 快乐数

编写一个算法来判断一个数是不是“快乐数”。

一个“快乐数”定义为:对于一个正整数,每一次将该数替换为它每个位置上的数字的平方和,然后重复这个过程直到这个数变为 1,也可能是无限循环但始终变不到 1。如果可以变为 1,那么这个数就是快乐数。

示例: 

输入: 19
输出: true
解释: 
12 + 92 = 82
82 + 22 = 68
62 + 82 = 100
12 + 02 + 02 = 1

题目标签:Hash Table / Math

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
python3 84 ms N/A
class Solution:
    def isHappy(self, n):
        """
        :type n: int
        :rtype: bool
        """
        num = n
        tmp = {}
        while True:
            num = self.calc(num)
            if num == 1:
                return True
            else:
                if num in tmp:
                    return False
                else:
                    tmp[num] = 0

    def calc(self, n):
        t = list(map(int, list(str(n))))
        res = sum(list(map(lambda x: x ** 2, t)))
        # tt = list(map(lambda x: '%s^2' % str(x), t))
        # print(' + '.join(tt) + ' = ' + str(res))
        return res