Skip to content

Latest commit

 

History

History
executable file
·
20 lines (16 loc) · 375 Bytes

File metadata and controls

executable file
·
20 lines (16 loc) · 375 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 

解题思路

见程序注释