LeetCode 168:Excel表列名称

给定一个正整数,返回它在 Excel 表中相对应的列名称。

例如,

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

示例 1:

输入: 1
输出: "A"

示例 2:

输入: 28
输出: "AB"

示例 3:

输入: 701
输出: "ZY"

Python3实现的代码:
class Solution:
    def convertToTitle(self, n):
        """
        :type n: int
        :rtype: str
        """
        alphe = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
        result = ''
        i = 1
        while n:
            if n%26 == 0:
                n = n -1
                result = alphe[25] + result
            else:
                result = alphe[n%26-1] + result
                n = n - n%26
            n = n//26
        return result

结果击败99.77%的用户。

猜你喜欢

转载自www.cnblogs.com/andingding-blog/p/10176734.html
今日推荐