Test Page: Difference between revisions

From The List Chaser
Jump to navigation Jump to search
(Created page with " <syntaxhighlight lang="python" line> def quick_sort(arr): less = [] pivot_list = [] more = [] if len(arr) <= 1: return arr else: pass ‎</syntaxhighlight>")
 
mNo edit summary
Line 1: Line 1:




Testing the code syntax highlighting extension...
<syntaxhighlight lang="python" line>
<syntaxhighlight lang="python" line>



Revision as of 23:04, 21 July 2022


Testing the code syntax highlighting extension...

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