2.0.0 • Published 5 years ago

bin-search-gg v2.0.0

Weekly downloads
4
License
ISC
Repository
github
Last release
5 years ago

Binary Search Algorithm

🏁 Introduction

simplifies your searches using the binary search method

Simplifica as suas buscas através do método de busca binária.

⚙ How to use

const { binarySearch } = require('bin-search-gg')

🎯 Responses

binarySearch(array, target)
RequestResponse (object)
1,2,3,4,5, 4{value: 4, position: 3}
1,1,1,1,1, 1{value: 1, position: 2}
1,2,3,4,5, 6-1
5,4,3,2,1, 4-1
1,2,3,0,5, 0-1
2.0.0

5 years ago

1.0.0

5 years ago