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>")
 
 
Line 1: Line 1:
<syntaxhighlight lang="python" line='line'>
+
<syntaxhighlight lang="python">
 
def quick_sort(arr):
 
def quick_sort(arr):
 
less = []
 
less = []

Latest revision as of 14:30, 5 May 2021

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