Question: 4) Write a recursive method isBackwards that has two String parameters and returns true if the two Strings have the same sequence of characters but
4) Write a recursive method isBackwards that has two String parameters and returns true if the two Strings have the same sequence of characters but in the opposite order (ignoring white space and capitalization), and returns false otherwise. The method should throw an IllegalArgumentException if either String is null. Test this method with following examples, isBackwards("Fried", "deirf") ->true isBackwards("Sit", "Toes") -> false isBackwards("","") ->true isBackwards("I nadam", "mad am I") -> true Hint: You may find the toLowerCase and isWhitespace methods of the Character class helpful in Java APl. public boolean isBackwards(String first, String second)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
