【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':
相关文章
相关标签/搜索