吾生也有涯,而知也无涯 。以有涯随无涯,殆已!
from functools import reduce class Solution: def titleToNumber(self, s: str) -> int: return reduce(lambda x, y: x * 26 + ord(y) - ord('A') + 1, s, 0)
No comments:
Post a Comment