-
Notifications
You must be signed in to change notification settings - Fork 0
/
leetcode_202.java
59 lines (52 loc) · 1.51 KB
/
leetcode_202.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package leetcode;
import java.security.PublicKey;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Set;
/*
编写一个算法来判断一个数 n 是不是快乐数。
「快乐数」定义为:对于一个正整数,每一次将该数替换为它每个位置上的数字的平方和,然后重复这个过程直到这个数变为 1,也可能是 无限循环 但始终变不到 1。如果 可以变为 1,那么这个数就是快乐数。
如果 n 是快乐数就返回 True ;不是,则返回 False 。
示例:
输入:19
输出:true
解释:
1^2 + 9^2 = 82
8^2 + 2^2 = 68
6^2 + 8^2 = 100
1^2 + 0^2 + 0^2 = 1
*/
public class leetcode_202 {
public static void main(String[] args){
lee_202 s= new lee_202();
boolean r = s.isHappy(19);
System.out.println(r);
}
}
/*
silu :我们需要保存每一次的sum值,如果重复且不为1,那我们就返回false
*/
class lee_202{
public boolean isHappy(int n) {
HashSet<Integer> res = new HashSet<>();
while(true){
int sum =0;
while(n!=0){
sum+=(n%10)*(n%10);
n = n/10;
}
if(sum==1)
return true;
else
{
if(res.contains(sum)){
return false;
}
else{
res.add(sum);
n =sum;
}
}
}
}
}