quicksort in go
jftuga opened this issue · 0 comments
jftuga commented
The quickSortStart
is mentioned but never defined.
https://blog.boot.dev/golang/quick-sort-golang/
func quickSortStart(arr []int) []int {
return quickSort(arr, 0, len(arr)-1)
}