(String[] args)
| 69 | } |
| 70 | |
| 71 | public static void main(String[] args) { |
| 72 | Solution solution = new Solution(); |
| 73 | System.out.println(solution.findSubstring("wordgoodgoodgoodbestword", new String[]{"word", "good", "best", "good"})); |
| 74 | System.out.println(solution.findSubstring("barfoothefoobarman", new String[]{"foo", "bar"})); |
| 75 | System.out.println(solution.findSubstring("barfoofoobarthefoobarman", new String[]{"bar", "foo", "the"})); |
| 76 | } |
| 77 | } |
nothing calls this directly
no test coverage detected