Standard fixes | Cycle Sort

This commit is contained in:
marsonya
2021-01-25 23:52:47 +05:30
parent 1626a58b35
commit 9decf7bc7f

View File

@ -63,5 +63,5 @@ console.log('\n- Before Sort | Implementation of Cycle Sort -')
console.log(array)
// After Sort
console.log('- After Sort | Implementation of Cycle Sort -')
console.log(countingSort(array))
console.log(cycleSort(array))
console.log('\n')