You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An easy to implement an algorithm (KMP Algorithm) that finds the pattern in a given text.
Have you read the Contribution Guidelines?
Yes
Pitch
Given a text text[] and a pattern[], write a function search(char pattern[], char text[]) that prints all occurrences of pattern[] in text[].
Example : text[] = "My Name is Manas"
pat[] = "Manas"
Solution : Pattern found at index 12
The text was updated successfully, but these errors were encountered:
🚀 Feature
An easy to implement an algorithm (KMP Algorithm) that finds the pattern in a given text.
Have you read the Contribution Guidelines?
Yes
Pitch
Given a text text[] and a pattern[], write a function search(char pattern[], char text[]) that prints all occurrences of pattern[] in text[].
Example : text[] = "My Name is Manas"
pat[] = "Manas"
Solution : Pattern found at index 12
The text was updated successfully, but these errors were encountered: