LeetCode 0171 - Excel Sheet Column Number
Excel Sheet Column Number
Desicription
Given a column title as appear in an Excel sheet, return its corresponding column number.
For example:
1 | A -> 1 |
Example 1:
1 | Input: "A" |
Example 2:
1 | Input: "AB" |
Example 3:
1 | Input: "ZY" |
Solution
1 | class Solution { |