难道是 s[3:-1:-1]等价于 s[3:4:-1]?所以结果为''? 关联的 LeetCode problem: Valid Palindrome II - LeetCode。 我的出现错误的 solution 。 class Solution: def validPalindrome(self, s: str) -> bool: l, r = 0, len(s) - 1 while l 期望
+---+---+---+---+---+---+ | P | y | t | h | o | n | +---+---+---+---+---+---+ 0 1 2 3 4 5 -6 -5 -4 -3 -2 -1