Excel Sheet Column Number Excel表单列数

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

你可能感兴趣的:(Excel Sheet Column Number Excel表单列数)