Skip to content

Instantly share code, notes, and snippets.

View saldisobi's full-sized avatar

Sourabh Saldi saldisobi

  • Berlin
  • 15:50 (UTC -12:00)
View GitHub Profile
@saldisobi
saldisobi / StringKMP.kt
Last active September 25, 2019 16:53
KMP Algorithm : Kotlin Implementation
package strings
import java.util.*
class StringKMP {
fun matchPattern(pattern: String, text: String): Int {
var i = 0 //text pointer