Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Testing page

From MTU LUG Wiki
Revision as of 16:00, 14 March 2022 by imported>Sjwhitak (Testing syntax highlighting.)

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