leedcode Excel 表列序號

Junior_bond發表於2024-03-05

自己寫的:

class Solution:
    def titleToNumber(self, columnTitle: str) -> int:
        # 建立一個字典,將字母對映到它們在字母表中的位置
        mydict = dict()
        for i in range(1, 27):
            mydict[chr(ord('A') + i - 1)] = i

        # 計算位數,初始化索引和結果
        bit = len(columnTitle) - 1
        j = 0
        res = 0

        # 從高位到低位遍歷列標題
        while bit >= 0:
            # 將字母對應的數字乘以 26 的 bit 次方加到結果中
            res = res + mydict[columnTitle[j]] * 26 ** bit
            bit -= 1
            j += 1

        # 返回最終結果
        return res

相關文章