Given a large string (haystack), find a substring (needle) on it.
Anonymous
The Knuth-Morris-Pratt algorithm does it in O(N+M), where N and M are the sizes of the two strings. However, it is quite hard to code from scratch.
Check out your Company Bowl for anonymous work chats.