This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// run from the command line with: | |
// javac PalindromeTester.java && java PalindromeTester | |
public class PalindromeTester { | |
public boolean isPalindrome(String input) { | |
// your code here | |
return false; | |
} | |