Skip to content

Commit c83bc5b

Browse files
committed
Remove testing code in function file
1 parent 7076c2a commit c83bc5b

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

Sorts/CombSort.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,4 @@ function combSort (list) {
4949
return list
5050
}
5151

52-
/**
53-
* Implementation of Comb Sort
54-
*/
55-
const array = [5, 6, 7, 8, 1, 2, 12, 14]
56-
// Before Sort
57-
console.log('\n- Before Sort | Implementation of Comb Sort -')
58-
console.log(array)
59-
// After Sort
60-
console.log('- After Sort | Implementation of Comb Sort -')
61-
console.log(combSort(array))
62-
console.log('\n')
63-
6452
export { combSort }

0 commit comments

Comments
 (0)