快乐数

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

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

示例:

1
2
3
4
5
6
7
输入: 19
输出: true
解释:
1^2 + 9^2 = 82
8^2 + 2^2 = 68
6^2 + 8^2 = 100
1^2 + 0^2 + 0^2 = 1

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public boolean isHappy(int n) {
HashSet<Integer> set = new HashSet<>();
while (true) {
int result = 0;
int temp;
while (n > 0) {
temp = n % 10;
result = result + temp * temp;
n /= 10;
}
if (result == 1) return true;
if (set.contains(result)) {
return false;
}else {
set.add(result);
n = result;
}
}
}

说明:是的,管你快不快乐,我快乐就行^_^