78. Excel Sheet Column Number
11 Sep 2020 | Daily Algorithms
class Solution {
public:
int titleToNumber(string s) {
int result = 0;
for(int i = 0; i<s.size(); i++)
{
result = result * 26 + (s.at(i) - 'A' + 1);
}
int c = 'A';
cout<<c; // 65, 그러니까 잘보면 A-Z까지의 크기를 A를 뺴서 B는 2, C는 3등으로 구별
return result;
}
};
class Solution {
public:
int titleToNumber(string s) {
int result = 0;
for(int i = 0; i<s.size(); i++)
{
result = result * 26 + (s.at(i) - 'A' + 1);
}
int c = 'A';
cout<<c; // 65, 그러니까 잘보면 A-Z까지의 크기를 A를 뺴서 B는 2, C는 3등으로 구별
return result;
}
};
Comments