Difference between revisions of "User talk:Admin"

Jump to: navigation, search
(Created page with "<syntaxhighlight lang="python" highlight="1,5-7" start='3' line> def quick_sort(arr): less = [] pivot_list = [] more = [] if len(arr) <= 1: return arr else: pass </...")
 
(No difference)

Latest revision as of 08:12, 30 October 2020

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