Given a string `s`, determine if it is a palindrome. Consider only alphanumeric characters and ignore case.
Return `True` if it is a palindrome, `False` otherwise.
def is_palindrome(s: str) -> bool:
Given a string `s`, determine if it is a palindrome. Consider only alphanumeric characters and ignore case.
Return `True` if it is a palindrome, `False` otherwise.
def is_palindrome(s: str) -> bool: