Quick Sort
mediumImplement quicksort with partition — the most important sort for interviews
Quick Sort (Partition)
Partition places pivot in correct position — elements left are smaller, right are larger
Pick last element (70) as pivot. Goal: put everything < 70 left, > 70 right.