Problem: Valid Palindrome
Explore how to verify if a string is a valid palindrome by using two pointers to compare characters while ignoring case and non-alphanumeric symbols. Learn to implement this efficient string algorithm with O(n) time and O(1) space complexity, enhancing your C++ problem-solving skills.
We'll cover the following...
Statement
A phrase is considered a palindrome if, after converting all uppercase letters to lowercase and stripping 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 qualifies as a palindrome after the transformations described above, or FALSE otherwise.
Note: An empty string (which may result after removing all non-alphanumeric characters) is considered a palindrome.
Constraints:
s.length...