python from hft_collections import quick_sort arr = [9, 5, 1, 3, 8, 4, 2, 7, 6] quick_sort(arr) print(arr)