# 快乐数

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

「快乐数」定义为:

如果 n 是快乐数就返回 true ;不是,则返回 false

 

示例 1:

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

示例 2:

输入:n = 2
输出:false

 

提示:

## template ```python class Solution(object): def isHappy(self, n): """ :type n: int :rtype: bool """ d = {} while True: l = list(map(int, list(str(n)))) m = 0 for i in l: m += i ** 2 if m in d: print(d) return False if m == 1: print(d) return True d[m] = m n = m ``` ## 答案 ```python ``` ## 选项 ### A ```python ``` ### B ```python ``` ### C ```python ```