Update src/algorithms/search/exponential-search/exponentialSearch.js

Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com>
This commit is contained in:
GohJunLe 2022-09-03 17:17:30 +08:00 committed by GitHub
parent 1baf6106fd
commit 295fb99242
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,7 @@ export default function exponentialSearch(sortedArray, seekElement, comparatorCa
if (sortedArray.length !== 0) {
if (comparator.equal(sortedArray[0], seekElement))
return 0;
}
}
// Find range for binary search by repeated doubling
let range = 1;
while (range < length && comparator.lessThanOrEqual(sortedArray[range], seekElement)) {