position: absolute;
. position: absolute;
, ну как то не очень def binary_search(a_list, item):
low = 0
high = len(a_list) - 1
while low <= high:
mid = (low + high) // 2
guess = list[mid]
if guess == item:
return mid
elif guess > item:
high = mid - 1
else:
low = mid + 1
return None
my_list = [1, 3, 5, 7, 9]
binary_search(my_list, 3) # => 1
TypeError: '>' not supported between instances of 'types.GenericAlias' and 'int'