zoukankan      html  css  js  c++  java
  • 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%的用户。

  • 相关阅读:
    数组
    灰度转换
    类的定义和头文件
    读文件
    操纵元
    传递引用
    TensorFlow常用函数
    四、Item Pipeline
    三、Scrapy Shell
    二、Scrapy案例入门
  • 原文地址:https://www.cnblogs.com/andingding-blog/p/10176734.html
Copyright © 2011-2022 走看看