Skip to content

Instantly share code, notes, and snippets.

@Darkened12
Darkened12 / KMP.py
Last active October 21, 2024 07:18 — forked from m00nlight/gist:daa6786cc503fde12a77
Python KMP algorithm
from typing import List
class KMP:
"""Knuth-Morris-Pratt Algorithm by https://github.com/m00nlight"""
@staticmethod
def partial(pattern) -> List[int]:
""" Calculate partial match table: String -> [Int]"""
ret = [0]