Valdosta State University

that accepts a string and returns whether the string is a palindrome ignoring spaces. For example: “a bc cba” returns true. Note that this example has 1 space between and the “a” and “b” and 2 spaces between the two “c”s. Hint: write a helper method to remove the spaces from a string and then call ................
................