原题地址

2604.png

双指针的简单题,需要注意的是只比较字母和数字,并且字母不区分大小写

python代码

  1. def isPalindrome(self, s: str) -> bool:
  2. low, high = 0, len(s)-1
  3. while low <= high:
  4. while low<high and not s[low].isdigit() and not s[low].isalpha():
  5. low += 1
  6. while low<high and not s[high].isdigit() and not s[high].isalpha():
  7. high -= 1
  8. if s[low].lower() != s[high].lower():
  9. return False
  10. low += 1
  11. high -= 1
  12. return True