LeetCode 168:Excel表列名稱
阿新 • • 發佈:2018-12-25
給定一個正整數,返回它在 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%的使用者。