Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PrajaktaSathe/Java
/ main
Method
main
Programs/KMP.java:61–67 ·
view source on GitHub ↗
(String args[])
Source
from the content-addressed store, hash-verified
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
}
Callers
nothing calls this directly
Calls
1
kmp
Method · 0.95
Tested by
no test coverage detected