125. 验证回文串

题外话

简洁易懂的代码是好代码.

注意事项

  1. python 字符判断是何种类型的写法
  2. 条件的处理, 使用 continue比较好
class Solution(object):
    def isPalindrome(self, s):
        """
        :type s: str
        :rtype: bool
        """
        s = s.lower()
        l = 0
        r = len(s)-1
        
        while l

你可能感兴趣的:(125. 验证回文串)