Skip to content

Commit 37726ff

Browse files
authored
Fixed the missing arguments in the function call
1 parent a9b1f89 commit 37726ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sorts/CountingSort.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ console.log('\n- Before Sort | Implementation of Counting Sort -')
3939
console.log(array)
4040
// After Sort
4141
console.log('- After Sort | Implementation of Counting Sort -')
42-
console.log(countingSort(array))
42+
console.log(countingSort(array,0,5))
4343
console.log('\n')

0 commit comments

Comments
 (0)