Your question is Valid Palindrome String Check. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Given a string s, return true if it is a palindrome and false otherwise. A palindrome reads the same forward and backward. For this problem, compare characters case-insensitively and ignore all non-alphanumeric characters.
def is_palindrome(s):