Write the recursive function palindrome
that takes an string and determines if the string is palindrome or not. A string is palindrome that reads the same backward as forward. Note that the string is case-insensitive.
palindrome('racecar') -> True
palindrome('MadAm') -> True
palindrome('hello') -> False