Testing page
Jump to navigation
Jump to search
Edit anything you want on here to goof around or test things.
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass
Edit anything you want on here to goof around or test things.
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass