module documentation

Provides recursive binary_search function.

Function binary_search Return True if target is found in indicated portion of a Python list.
def binary_search(data, target, low, high):

Return True if target is found in indicated portion of a Python list.

The search only considers the portion from data[low] to data[high] inclusive.