grid47 Exploring patterns and algorithms
Oct 25, 2024
5 min read
Solution to LeetCode 125: Valid Palindrome Problem
A string is considered a palindrome if, after converting all uppercase letters to lowercase and removing all non-alphanumeric characters, it reads the same forward and backward. Alphanumeric characters include both letters and numbers. Given a string s, return true if it is a palindrome, otherwise return false.
Problem
Approach
Steps
Complexity
Input: The input is a string s that consists of printable ASCII characters.
Example: Input: s = 'Was it a car or a cat I saw?'
Constraints:
• 1 <= s.length <= 2 * 10^5
• s consists only of printable ASCII characters
Output: The output is a boolean value, true if the string is a palindrome, otherwise false.
Example: Output: true
Constraints:
• The string is considered a palindrome if it reads the same when ignoring non-alphanumeric characters and case differences.
Goal: The goal is to check if the given string is a palindrome after ignoring non-alphanumeric characters and converting all letters to lowercase.
Steps:
• Initialize two pointers, one at the start (i = 0) and one at the end (j = s.length() - 1).
• While the two pointers have not crossed each other, check the characters at both pointers.
• If the character at pointer i is not alphanumeric, move i forward.
• If the character at pointer j is not alphanumeric, move j backward.
• If the characters at i and j are equal (ignoring case), move both pointers inward.
• If any character comparison fails, return false.
• If the loop completes without finding any mismatches, return true.
Goal: The constraints ensure that the input string will have at least one character and no more than 200,000 characters.
Steps:
• 1 <= s.length <= 2 * 10^5
• s consists only of printable ASCII characters
Assumptions:
• The string will always contain at least one character.
• We will only work with printable ASCII characters.
• Input: Input: s = 'Was it a car or a cat I saw?'
• Explanation: After removing non-alphanumeric characters and converting to lowercase, the string becomes 'wasitacaroracatisaw', which is the same forward and backward, so the answer is true.
• Input: Input: s = 'race a car'
• Explanation: After removing non-alphanumeric characters and converting to lowercase, the string becomes 'raceacar', which is not the same forward and backward, so the answer is false.
• Input: Input: s = ' '
• Explanation: After removing non-alphanumeric characters, the string becomes an empty string, which is considered a palindrome, so the answer is true.
Approach: We use two pointers to compare the characters of the string from both ends, ignoring non-alphanumeric characters and case differences. The process continues until we check all characters or find a mismatch.
Observations:
• Using two pointers is an efficient way to check for palindrome properties.
• We need to account for both case insensitivity and ignoring non-alphanumeric characters.
Steps:
• Initialize two pointers: one starting from the beginning of the string and the other from the end.
• While the left pointer is less than or equal to the right pointer, check the characters.
• Skip non-alphanumeric characters by moving the pointers inward if necessary.
• Compare the characters at both pointers after converting them to lowercase.
• If they don't match, return false. If they match, continue the process.
• If no mismatches are found, return true.
Empty Inputs:
• The input can be an empty string, which is considered a palindrome.
Large Inputs:
• The solution must handle inputs with up to 200,000 characters efficiently.
Special Values:
• Strings with only non-alphanumeric characters should be considered palindromes as they become empty after removal.
Constraints:
• Ensure that the input string is within the specified length.