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.
2 parents f039b39 + c950fa2 commit 8fcbad0Copy full SHA for 8fcbad0
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