In Python3,
The classic binary search first step mid = start + (end - start) / 2 throws TypeError: list indices must be integers or slices, not flo
mid = start + (end - start) / 2
TypeError: list indices must be integers or slices, not flo