Pythonleetcode125. 驗證迴文串

class Solution: def isPalindrome(self, s): """ :type s: str :rtype: bool """ if(s==" "): return True str='' for i in s:
相關文章
相關標籤/搜索