Easy
给定excel表的列头,返回对应的列数目。
For example:
A -> 1
B -> 2
C -> 3
...
Z -> 26
AA -> 27
AB -> 28
Solution:
表单列头问题的逆向运算。
class Solution(object):
def titleToNumber(self, s):
"""
:type s: str
:rtype: int
"""
return 0 if s == '' else self.titleToNumber(s[:-1])*26 + ord(s[-1])-ord('A')+1