A palindrome is a word, phrase, number or other sequence of units that can be read the same way in either direction.
To check whether a word is a palindrome I get th
also a different looking solution:
public static boolean isPalindrome(String s) { for (int i=0 , j=s.length()-1 ; i