Question: Which of the following modifications can be made to binary search to find the first occurrence of a target value?
Options:
Correct Answer: Continue searching left after finding the target
Solution:
To find the first occurrence, continue searching to the left even after finding the target value.