My Blog List

[Leetcode Solution] Valid Palindrome

Analysis

  • First step transform the input original string to a normalized string with only number and lower case letter
  • valid if the normalized string is a palindrome

Note

Code