Question: Programming Challenge 3, An interesting string 15 points Lets call a string interesting if it reads the same forward and backward. Here are some examples:

Programming Challenge 3, An interesting string 15 points Lets call a string interesting if it reads the same forward and backward. Here are some examples:
able was I | I saw elba
desserts | stressed
kayak | kayak Write a method named interestingString that returns boolean that uses recursion to determine whether a String argument is indeed interesting. The method should return true if the argument reads the same forward and backward. Demonstrate the method in a program.
Programming Challenge 3, An interesting string - 15 points able was I I saw elba i akaer cps able was I| I saw elba desserts kayak kayak s stressed Write a method named interestingString that returns boolean that uses recursion to determine whether a String argument is indeed "interesting". The method should return true if the argument reads the same forward and backward. Demonstrate the method in a program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
