We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f59062a commit 050f56bCopy full SHA for 050f56b
1 file changed
Sorts/BucketSort.js
@@ -55,6 +55,8 @@ function bucketSort (list, size) {
55
56
// Testing
57
const arrOrignal = [5, 6, 7, 8, 1, 2, 12, 14]
58
+// > bucketSort(arrOrignal)
59
+// [1, 2, 5, 6, 7, 8, 12, 14]
60
// Array before Sort
61
console.log(arrOrignal)
62
const arrSorted = bucketSort(arrOrignal)
0 commit comments