❤leetcode,python2❤給定一個字符串,驗證它是不是迴文串,只考慮字母和數字字符,能夠忽略字母的大小寫。

class Solution(object): def isPalindrome(self, s): """ :type s: str :rtype: bool """ s = filter(str.isalnum, str(s)).lower() if s == s[::-1]: return True
相關文章
相關標籤/搜索