Just added: Embedded C From Zero
Python
# Return the index of target in the sorted list items, or -1 if it is not present.
def binary_search(items, target):
    pass