Question: Which of the following is a valid implementation of binary search in Python?
Options:
Correct Answer: def binary_search(arr, target): ...
Solution:
The first option correctly defines a binary search function that takes a sorted array and a target value.