Given a column title as appear in an Excel sheet, return its corresponding column number.

本质上是一个进制转换问题。

 

1 class Solution {
2 public:
3     int titleToNumber(string s) {
4         int ret = 0;
5         for(int i = 0; i < s.size(); i ++)
6             ret = ret*26 + (s[i]-'A'+1);
7         return ret;
8     }
9 };

 

相关文章:

  • 2022-12-23
  • 2021-08-20
  • 2021-11-07
  • 2022-12-23
猜你喜欢
  • 2021-07-05
  • 2021-05-27
  • 2021-08-07
  • 2021-08-16
  • 2022-01-18
  • 2022-02-24
  • 2021-09-09
相关资源
相似解决方案