bool isHappy(int n) {
unordered_set<int> set;
while(!set.count(n)){
int sum = 0;
set.insert(n);
while(n){
sum+=(n%10)*(n%10);
n/=10;
}
n=sum;
}
return n==1;
}
202. 快乐数/C++
最新推荐文章于 2024-10-04 20:25:50 发布