Palindrome Checker

problem explanation
in this problem we have to check if words have same meaning when they are reversed.We should ignore varying formats.

* allows only alphanumeric words.

we define variable that “cleans”(filters) string.we set string to lower case then splits.Then we filter char and it keeps elements that returns true.

Then we return wether it equals to same variable but reversed joined.

That was all bye!