From 37726ff22345c6c50b4453dabc56b541c2c8f4ff Mon Sep 17 00:00:00 2001 From: Chandan Vishwakarma <33517793+meet-cv@users.noreply.github.com> Date: Sun, 30 May 2021 19:08:52 +0530 Subject: [PATCH] Fixed the missing arguments in the function call --- Sorts/CountingSort.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sorts/CountingSort.js b/Sorts/CountingSort.js index 396765c4f..6cfd03d5b 100644 --- a/Sorts/CountingSort.js +++ b/Sorts/CountingSort.js @@ -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')