我已经提前步入了准备休假回家的开心节奏中啦!
今天纯手机刷了题,不想用手机写简书了,浪费时间,现发布,过后补。
29日凌晨补好了~
纯手机一次AC的代码:
发现果然还是用手机写的时候简短,因为手机打字费劲。
Tips:
- 字符的Ascii码的获取比想象中简单智能~
- pow函数还没忘,开心。
class Solution {
public:
int titleToNumber(string s) {
int ans = s[s.length() - 1] - 'A' + 1;
for(int i = 0; i < s.length() - 1; i++){
ans += (s[i] - 'A' + 1) * pow(26 , (s.length() - i -1) );
}
return ans;
}
};
网友评论