DEV Community

I Want To Learn Programming
I Want To Learn Programming

Posted on

Code Challenge of the Day — Palindrome, ignoring case and noise (medium)

Picks up where Palindrome check left off.

You checked simple palindromes. Now ignore case and any non-alphanumeric characters, then check.
Write is_clean_palindrome(s).

Starter:

def is_clean_palindrome(s):
    # TODO
    pass
Enter fullscreen mode Exit fullscreen mode

Solve it interactively in your browser (no setup), check your answer instantly, and keep your daily streak going on IWTLP: https://iwtlp.com/challenge

Top comments (0)