力扣刷题之路 680. 验证回文字符串 Ⅱ Python解

给定一个非空字符串 s,最多删除一个字符。判断是否能成为回文字符串。

示例 1:

输入: “aba”
输出: True
示例 2:

输入: “abca”
输出: True
解释: 你可以删除c字符。
注意:

字符串只包含从 a-z 的小写字母。字符串的最大长度是50000。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/valid-palindrome-ii

解:

    def validPalindrome(self, s: str) -> bool:
        if s == s[::-1]:
            return True
        else:
            for i in range(len(s)//2):
                if s[i] != s[~i]:
                    s1 = s[i+1:~i+1 if ~i+1 else 120000000]
                    s2 = s[i:~i]
                    if s1 and s1 == s1[::-1]:
                        return True
                    elif s2 and s2 == s2[::-1]:
                        return True
                    else:
                        return False
                    # 另一种解法
                    # s = list(s)
                    # if s[i + 1] == s[~i]:
                    #     s2 = s.copy()
                    #     s2.pop(i)
                    #     if s2 == s2[::-1]:
                    #         return True
                    # if s[i] == s[~i-1]:
                    #     s.pop(~i)
                    #     if s == s[::-1]:
                    #         return True
                    #     else:
                    #         return False
            else:
                return False

你可能感兴趣的:(力扣刷题之路,字符串,leetcode,python,算法)