【python實現】 125. 驗證迴文串

解答: class Solution: def isPalindrome(self, s: str) -> bool: if not s: return True z = [] s = s.lower() for c in s: if c>='a' and c<='z':
相關文章
相關標籤/搜索