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:
Ankush263
2022-06-10 20:32:47 +05:30
committed by GitHub
parent 398b6822dc
commit 15c20968ae
3 changed files with 21 additions and 5 deletions

View File

@ -77,7 +77,6 @@ class LinkedList {
this.headNode = this.headNode.next
this.length--
}
console.log(removedNode.data)
return removedNode?.data
}