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