diff --git a/algorithms/Go/sorting/quicksort.go b/algorithms/Go/sorting/quicksort.go index 5d055574..b703449f 100644 --- a/algorithms/Go/sorting/quicksort.go +++ b/algorithms/Go/sorting/quicksort.go @@ -41,3 +41,4 @@ func RunQuickSort() { arr := []int{10, 1, 6, 256, 2, 53, 235, 53, 1, 7, 23} fmt.Printf("Unsorted Array: %v\nSorted Array: %v", arr, quickSort(arr)) } +