Skip to content

Instantly share code, notes, and snippets.

@osha7
Last active February 20, 2021 19:33
Show Gist options
  • Save osha7/a2e8cad3863d56fbc3d0778e37ea3c1c to your computer and use it in GitHub Desktop.
Save osha7/a2e8cad3863d56fbc3d0778e37ea3c1c to your computer and use it in GitHub Desktop.
let arr = [1, 5, 14, 23, 27, 32, 40, 54, 59, 67, 73]
let target = 54
let binarySearchFunction = function(arr, target) {
let leftPointer = 0
let rightPointer = arr.length - 1
return -1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment