Leetcode #171 Excel Sheet Column Number

    xiaoxiao2021-03-25  56

    Description

    Related to question Excel Sheet Column Title

    Given a column title as appear in an Excel sheet, return its corresponding column number.

    Example

    A -> 1 B -> 2 C -> 3 … Z -> 26 AA -> 27 AB -> 28

    Code

    class Solution(object): def titleToNumber(self, s): """ :type s: str :rtype: int """ return sum((ord(i) - 64) * pow(26, p) for p,i in enumerate(s[::-1]))
    转载请注明原文地址: https://ju.6miu.com/read-37646.html

    最新回复(0)