标签:int 没有 title tle ber 函数 str solution a*
我发现力扣的环境里面没有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);
}
};
标签:int 没有 title tle ber 函数 str solution a*
原文地址:https://www.cnblogs.com/xyqxyq/p/12906956.html