chore: Merge PR #618

Fixed the missing arguments in the countingSort() function call
This commit is contained in:
Rak Laptudirm
2021-06-17 11:15:03 +05:30
committed by GitHub

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')