Fixed the missing arguments in the function call

This commit is contained in:
Chandan Vishwakarma
2021-05-30 19:08:52 +05:30
committed by GitHub
parent a9b1f8994f
commit 37726ff223

View File

@ -39,5 +39,5 @@ console.log('\n- Before Sort | Implementation of Counting Sort -')
console.log(array)
// After Sort
console.log('- After Sort | Implementation of Counting Sort -')
console.log(countingSort(array))
console.log(countingSort(array,0,5))
console.log('\n')