From c83bc5ba6ed31691cbc9619f012365dfe6f31123 Mon Sep 17 00:00:00 2001 From: Charlie Moore Date: Tue, 5 Oct 2021 09:00:29 -0400 Subject: [PATCH] Remove testing code in function file --- Sorts/CombSort.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Sorts/CombSort.js b/Sorts/CombSort.js index b56b1aa5c..d22d5b54e 100644 --- a/Sorts/CombSort.js +++ b/Sorts/CombSort.js @@ -49,16 +49,4 @@ function combSort (list) { return list } -/** -* Implementation of Comb Sort -*/ -const array = [5, 6, 7, 8, 1, 2, 12, 14] -// Before Sort -console.log('\n- Before Sort | Implementation of Comb Sort -') -console.log(array) -// After Sort -console.log('- After Sort | Implementation of Comb Sort -') -console.log(combSort(array)) -console.log('\n') - export { combSort }