| 58 | } |
| 59 | } |
| 60 | public class Main{ |
| 61 | public static void main(String args[]) { |
| 62 | String s = "abcabcabd"; |
| 63 | String pattern = "abcabd"; |
| 64 | KMP kmp = new KMP(s,pattern); |
| 65 | System.out.println(kmp.kmp()); |
| 66 | |
| 67 | } |
| 68 | } |
nothing calls this directly
no outgoing calls
no test coverage detected