From a36fbf988f56e525db341c6864488d076c68bd3f Mon Sep 17 00:00:00 2001 From: Rak Laptudirm <68542775+raklaptudirm@users.noreply.github.com> Date: Thu, 17 Jun 2021 11:07:50 +0530 Subject: [PATCH] chore: Fix style problems --- Sorts/CountingSort.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sorts/CountingSort.js b/Sorts/CountingSort.js index 6cfd03d5b..2003cfb73 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,0,5)) +console.log(countingSort(array, 0, 5)) console.log('\n')