Main Page: Difference between revisions

From ElixirBlocks
Jump to: navigation, search
No edit summary
(Blanked the page)
Tag: Blanking
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
‎<syntaxhighlight lang="python" line>
 
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass
‎</syntaxhighlight>

Latest revision as of 14:49, 8 March 2023