EasyString· 69% acceptance
#491

Valid Palindrome 41

Easy

After removing non-alphanumeric characters and ignoring case, determine if `s` reads the same forward and backward. Variant **#41**.

Example 1

Input: s = "hello41"

Output: false

Constraints

  • 1 <= s.length <= 2 * 10^5

Acceptance: 69% · Topics: string, two-pointers

isPalindrome

← All practice problems