This file contains hidden or 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
public class Main { | |
public static void main(String[] args) { | |
System.out.println(isPalindrome("A man, a plan, a canal - Panama!")); | |
} | |
/** | |
* Method to check if given string is a palindrome | |
* @param sentence - sentence | |
* @return boolean - if sentence is a palindrome |
This file contains hidden or 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
## Java | |
*.class | |
*.war | |
*.ear | |
hs_err_pid* | |
## GWT | |
war/ | |
html/war/gwt_bree/ |