module documentation

Provides the find_boyer_moore function to perform a text search using the Boyer-Moore algorithm.

Function find_boyer_moore Return the lowest index of T at which substring P begins (or else -1).
def find_boyer_moore(T, P):

Return the lowest index of T at which substring P begins (or else -1).