704 Binary Search
Techniques Used
Binary Search
Approach
We just need a simple binary search algorithm to find the target.
For every start and end indices, find the mid as (start + end)/2 .
Check if the middle element is lesser than target
if yes, then the target l...
raahulsaxena.hashnode.dev2 min read