A palindrome is a string that is spelled the same way forward and backward. some examples of palindromes are: "radar," "able was i ere i saw elba," and, if you ignore blanks, "a man a plan a canal panama." write a recursive function testPalindrome that returns 1 if the string stored in the array is a palindrome and 0 otherwise. the function should ignore spaces and punctuation in the string