mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-05 00:01:37 +08:00
Fix whitespace alignment
This commit is contained in:
@ -18,7 +18,7 @@ Best Case O(n); Average Case O(n); Worst Case O(n)
|
||||
* @param {number[]} list The array of numbers to be sorted.
|
||||
* @param {number} size The size of the buckets used. If not provided, size will be 5.
|
||||
* @return {number[]} An array of numbers sorted in increasing order.
|
||||
*/
|
||||
*/
|
||||
function bucketSort (list, size) {
|
||||
if (undefined === size) {
|
||||
size = 5
|
||||
|
Reference in New Issue
Block a user