We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a641635 commit 4ae7e52Copy full SHA for 4ae7e52
1 file changed
src/sorting/linearsort/bucketsort.js
@@ -45,7 +45,6 @@ var bucketSort = (function () {
45
sectorSize = 1 / array.length;
46
for (var i = 0; i < array.length; i += 1) {
47
current = array[i];
48
- console.log(current / sectorSize);
49
currentBucket = Math.floor(current / sectorSize);
50
if (buckets[currentBucket] === undefined) {
51
buckets[currentBucket] = [];
0 commit comments