Pergunta de entrevista da empresa Meta

Given a large string (haystack), find a substring (needle) on it.

Resposta da entrevista

Sigiloso

3 de abr. de 2010

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.