-
Notifications
You must be signed in to change notification settings - Fork 0
/
202.快乐数.java
61 lines (58 loc) · 1.36 KB
/
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
60
61
import java.util.HashSet;
import java.util.Set;
/*
* @lc app=leetcode.cn id=202 lang=java
*
* [202] 快乐数
*
* https://leetcode-cn.com/problems/happy-number/description/
*
* algorithms
* Easy (57.52%)
* Likes: 343
* Dislikes: 0
* Total Accepted: 75.6K
* Total Submissions: 125.9K
* Testcase Example: '19'
*
* 编写一个算法来判断一个数 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
*
*
*/
// @lc code=start
class Solution {
public boolean isHappy(int n) {
Set<Integer> map = new HashSet<>(512);
while (!map.contains(n)) {
map.add(n);
n = getNext(n);
}
return false;
}
private int getNext(int n) {
int result = 0;
while (n != 0) {
result = result + (int) Math.pow(n % 10, 2);
n = n / 10;
}
return result;
}
}
// @lc code=end