Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 487 Bytes

File metadata and controls

19 lines (14 loc) · 487 Bytes

Related to question Excel Sheet Column Title

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

For example:

A -> 1
    B -> 2
    C -> 3
    ...
    Z -> 26
    AA -> 27
    AB -> 28

Credits:
Special thanks to @ts for adding this problem and creating all test cases.

Show Tags Math