• 【leetcode❤python】 168. Excel Sheet Column Title


    class Solution(object):
        def convertToTitle(self, n):
            """
            :type n: int
            :rtype: str
            """
            res=''
            while n>0:
                tmp=n
                n=(n-1)/26
                res+=chr(65+(tmp-1)%26)
            
            return res[::-1]

  • 相关阅读:
    蟠桃记
    考新郎
    有假币
    年会抽奖
    发邮件
    进制回文数
    数位和
    外星人的语言
    一的个数
    继承
  • 原文地址:https://www.cnblogs.com/kwangeline/p/6059595.html
Copyright © 2020-2023  润新知