168. Excel Sheet Column Title

题目 我的代码 整个代码的精髓 n-=1 class Solution(object): def convertToTitle(self, n): """ :type n: int :rtype: str """ result='' while n: n-=1 result=chr(n%26+6
相关文章
相关标签/搜索