171. Excel Sheet Column Number
Problem description:
Given a column title as appear in an Excel sheet, return its corresponding column number.
For example:1
2
3
4
5
6
7
8A -> 1
B -> 2
C -> 3
...
Z -> 26
AA -> 27
AB -> 28
...
Example 1:1
2Input: "A"
Output: 1
Example 2:1
2Input: "AB"
Output: 28
Example 3:
1 | Input: "ZY" |
time complexity: $O(n)$
space complexity: $O(1)$
reference:
related problem: