Skip to content

Commit 4ae7e52

Browse files
committed
Removed useless console.log
1 parent a641635 commit 4ae7e52

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/sorting/linearsort/bucketsort.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ var bucketSort = (function () {
4545
sectorSize = 1 / array.length;
4646
for (var i = 0; i < array.length; i += 1) {
4747
current = array[i];
48-
console.log(current / sectorSize);
4948
currentBucket = Math.floor(current / sectorSize);
5049
if (buckets[currentBucket] === undefined) {
5150
buckets[currentBucket] = [];

0 commit comments

Comments
 (0)