1
vote
Binary Search in Python
If you just want to see if it's present, try turning the list into a dict:
# Generate a list
l = [n*n for n in range(1000)]
# Convert to dict - doesn't matter what you map values t …
