import re

def codingchallenge(strParam):
    # Remove non-letter characters, leaving only alphabetic characters
    cleaned_str = re.sub(r'[^a-zA-Z]', '', strParam).lower()

    # Check if the cleaned string is a palindrome
    return cleaned_str == cleaned_str[::-1]
    

