Difference between revisions of "User:LovelyA72/Sandbox"

From What's Up With Your MCU? - A72's ECE Hobby Blog
Jump to navigation Jump to search
(Created page with "<syntaxhighlight lang="python" line='line'> def quick_sort(arr): less = [] pivot_list = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight>")
(No difference)

Revision as of 01:23, 29 April 2021

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