Question

Consider the following Python code snippet for binary search:     def binary_search(arr, target):         low = 0         high = len(arr) - 1         while low

B 2
C 3
D 5
E 6
Practice Next

Hey! Ask a query