From 932599d37b71f64c17579fcda1cd98033293987a Mon Sep 17 00:00:00 2001 From: Charlie Moore Date: Tue, 5 Oct 2021 08:54:13 -0400 Subject: [PATCH] Remove testing code in function file --- Sorts/CycleSort.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Sorts/CycleSort.js b/Sorts/CycleSort.js index eb612d9c3..1120b47ef 100644 --- a/Sorts/CycleSort.js +++ b/Sorts/CycleSort.js @@ -56,16 +56,4 @@ function cycleSort (list) { return list } -/** -* Implementation of Cycle Sort -*/ -const array = [5, 6, 7, 8, 1, 2, 12, 14] -// Before Sort -console.log('\n- Before Sort | Implementation of Cycle Sort -') -console.log(array) -// After Sort -console.log('- After Sort | Implementation of Cycle Sort -') -console.log(cycleSort(array)) -console.log('\n') - export { cycleSort }