...
/Free Response Question: Recursive Binary Search
Free Response Question: Recursive Binary Search
In this exercise, you'll use a recursive approach to do a binary search.
We'll cover the following...
Background
In Unit 7, we covered a searching algorithm known as binary search. We used an iterative approach to search for an element in an array.
In this challenge, you’re required to recursively ...