Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f039b39 commit c950fa2Copy full SHA for c950fa2
algorithm/search/binary_search/iterative/code.js
@@ -40,4 +40,4 @@ function BinarySearch(array, element) { // array = sorted array, element = eleme
40
var element = D[Integer.random(0, D.length - 1)];
41
42
logger._print('Using iterative binary search to find ' + element);
43
-BinarySearch(D, element, 0, D.length - 1);
+BinarySearch(D, element);
0 commit comments