n 对 26 取余 y = n % 26 得到当前的位数字符, 如果 y = 0 则当前位满26, 前一位 n // 26 应 - 1;
#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
#
# @param n int整型
# @return string字符串
#
class Solution:
def ExcelTitle(self , n: int) -> str:
# write code here
chars = "ZABCDEFGHIJKLMNOPQRSTUVWXY"
res = ""
while n != 0:
n, y = n // 26, n % 26
res = chars[y] + res
if y == 0:
n = n - 1
return res