1.1-Introductie-Programmeren

Palindrome check

Difficulty: Filled Filled Outlined

Create a method isPalindrome(String input) that checks whether or not a String is a palindrome. Check the wikipedia entry for palindrome to find out what it is.

(Hint, you can use the reverse String method to help you out!)

Example

Example

Example