-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhappy-number.cpp
41 lines (32 loc) · 1.05 KB
/
happy-number.cpp
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
class Solution {
public:
bool isHappy(int n) {
// 1111 -> [1, 1, 1, 1]
// function<int(vector<int>)
auto getDigits = [](int number) -> vector<int> {
vector<int> digits;
while( number != 0 ) {
digits.push_back( number % 10 );
number = number / 10;
}
return digits;
};
unsigned int currentValue = n;
unsigned int prevValue = INT_MIN;
unordered_set<unsigned int> previouslySeen;
while(prevValue != currentValue) {
prevValue = currentValue;
vector<int> digits = getDigits(currentValue);
unsigned int sum = 0;
for(int i: digits) {
sum += i*i;
}
currentValue = sum;
if (previouslySeen.count(sum) == 1) {
break;
}
previouslySeen.insert(sum);
}
return currentValue == 1 ? true : false;
}
};