Write code to find palindrome words.
Implement find_palindrome_words(words), returning the original words that are palindromes when compared case-insensitively after removing non-alphanumeric characters. Preserve input order and spelling. Ignore entries that contain no alphanumeric characters.
Function: def find_palindrome_words(words):
Input: A list of strings. Output: A list of matching original strings.
def find_palindrome_words(words):