Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Binary Search

Challenge

Perform a binary search in a sorted 1D array, take in a value and return the index of where that value in that array is found, or -1 if not found in array.

Solution