MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / Main

Class Main

Programs/KMP.java:60–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58 }
59}
60public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected