202. 快乐数
Posted xyqxyq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了202. 快乐数相关的知识,希望对你有一定的参考价值。
我发现力扣的环境里面没有stoi函数
int stoi(string& s) {
int a=0,b=1;
for (int i=0;i<s.length();i++) {
a=a*26+(s[i]-‘A‘+1);
}
return a;
}
class Solution {
public:
int titleToNumber(string s) {
return stoi(s);
}
};
以上是关于202. 快乐数的主要内容,如果未能解决你的问题,请参考以下文章