Jump to content

Lists and Dictionaries

From Slow Like Wiki
Revision as of 09:34, 31 March 2024 by Rob (talk | contribs) (Lists)

Lists

Create a list


def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass