Skip to content

Commit 782386a

Browse files
committed
Remove testing code in function file
1 parent 11315ea commit 782386a

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

Sorts/BucketSort.js

-10
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,4 @@ function bucketSort (list, size) {
6161
return sorted
6262
}
6363

64-
// Testing
65-
const arrOrignal = [5, 6, 7, 8, 1, 2, 12, 14]
66-
// > bucketSort(arrOrignal)
67-
// [1, 2, 5, 6, 7, 8, 12, 14]
68-
// Array before Sort
69-
console.log(arrOrignal)
70-
const arrSorted = bucketSort(arrOrignal)
71-
// Array after sort
72-
console.log(arrSorted)
73-
7464
export { bucketSort }

0 commit comments

Comments
 (0)