1
2
3
4
5
6
7
8
def quick_sort(arr):
    less = []
    pivot_list = []
    more = []
    if len(arr) <= 1:
	return arr
    else:
	pass