mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-06 09:28:26 +08:00
Fixed the missing arguments in the function call
This commit is contained in:

committed by
GitHub

parent
a9b1f8994f
commit
37726ff223
@ -39,5 +39,5 @@ console.log('\n- Before Sort | Implementation of Counting Sort -')
|
|||||||
console.log(array)
|
console.log(array)
|
||||||
// After Sort
|
// After Sort
|
||||||
console.log('- After Sort | Implementation of Counting Sort -')
|
console.log('- After Sort | Implementation of Counting Sort -')
|
||||||
console.log(countingSort(array))
|
console.log(countingSort(array,0,5))
|
||||||
console.log('\n')
|
console.log('\n')
|
||||||
|
Reference in New Issue
Block a user