module documentation

Provides an inefficient recursive algorithm unique3, for testing if a sequence contains duplicates.

Function unique3 Return True if there are no duplicate elements in slice S[start:stop].
def unique3(S, start, stop):

Return True if there are no duplicate elements in slice S[start:stop].