After removing non-alphanumeric characters and ignoring case, determine if `s` reads the same forward and backward. Variant **#30**.
Example 1
Input: s = "A man a plan a canal Panama30"
Output: false
Constraints
Acceptance: 75% · Topics: string, two-pointers