Course · Section 11: Working With Arrays · Lecture 172: Sorting Arrays
Implement `quickSort(arr)` returning the array sorted ascending using quicksort.
+ 1 hidden test run on Submit.
Quicksort partitions around a pivot and recurses. Average O(n log n), worst O(n^2).
Run your code to see results.