Question: Create a public static boolean method called isPalindromeA2 that accepts a String as an argument and checks whether it is a palindrome using the following
Create a public static boolean method called isPalindromeA2 that accepts a String as an argument and checks whether it is a palindrome using the following algorithm: Split the string into two halves (for odd number of length, omit the middle char) using a substring method Reverse the second half Compare the first half to the reversed second half Hint: pay attention to differences between strings that have odd number of characters vs strings with even number of characters (Java programming)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
