leetcode 算法 Excel表列序號 python實現

  這道題給我感覺就像一個26進制數一樣。 A 就是1 B是2 。。。。 Z 是26 如果AB 兩位,那就是  1 * 26 + 2   就是A 的數值*26 + B的數值 如果是MNP 三位數   那就是 M * 26^2 + N * 26^1 + P *26^0 就這樣。。   1 class Solution: 2 def titleToNumber(self, s): 3
相關文章
相關標籤/搜索