Closed
Description
Description of the problem
Implement a string matching algorithm - Knuth–Morris–Pratt
Example of the problem
Input
- string = "njfsonqwertylksmfds"
- subString = "qwerty"
Output
True
References/Other comments
This is the first string matching algorithm in the project, it would be good to have a design that allows to have multiple string matching algorithms.