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
import py4j.GatewayServer; | |
public class FindForbiddenEntryPoint { | |
public class Finder{ | |
public boolean jForbidden(String word, char forbidden_1){ | |
return word.indexOf(forbidden_1) > -1; | |
} | |
} | |
Finder finder = null; |