DSA - Binary Search
Binary Search is a search technique to find elements in a collection.
note:
Binary search only works on sorted collections
example:
this's a sorted array
10,11,12,13,14,15
## the index of this array will be
0,1,2,3,4,5
say, we want to find elem...
josephchinedu.hashnode.dev2 min read