mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2026-03-13 15:21:15 +08:00
merge: Add test case to jump search Algorithm (#1041)
* Add test case to jump search Algorithm
* Updated Documentation in README.md
* Remove commented code
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@@ -29,7 +29,5 @@ const jumpSearch = (arr, value) => {
|
||||
}
|
||||
return -1
|
||||
}
|
||||
const arr = [0, 0, 4, 7, 10, 23, 34, 40, 55, 68, 77, 90]
|
||||
jumpSearch(arr, 4)
|
||||
jumpSearch(arr, 34)
|
||||
jumpSearch(arr, 77)
|
||||
|
||||
export { jumpSearch }
|
||||
|
||||
Reference in New Issue
Block a user