module documentation

Provides a find function, locating a value in a sequence.

Function find Return index j such that S[j] == val, or -1 if no such element.
def find(S, val):

Return index j such that S[j] == val, or -1 if no such element.