Solutions to high-frequency interview questions of LeetCode in C++17, taking into account both efficiency and comprehensibility.
class Solution {
public:
int titleToNumber(string s) {
int res = 0;
for (auto& x : s) {
res *= 26;
res += x - 'A' + 1;
}
return res;
}
};