Gledson
Results
1
issues of
Gledson
https://github.com/spring1843/go-dsa/blame/adc15f7574794bfed14bc10c1689415323fa619c/array/bubble_sort.go#L7 the implementation is comparing the elements in a inefficient way please see the comparison bellow ```Go func bubbleSort(input []int) []int { swapped := true for swapped { swapped =...
enhancement