def binarySearch(aList, target): low = 0 high = len(aList) - 1 mid = 0 while low <= high: mid = (high + low) // 2 # Check if ta