Difference between revisions of "Sandbox"

From Heureka Wiki
Sandbox
Jump to navigation Jump to search
Line 20: Line 20:
 
}}
 
}}
  
<!--
+
==Bug fixes version 2.9.0==
==Bug fixes version 2.7.0==
 
 
<mantis>
 
<mantis>
status = closed
+
status = resolved, closed
fixed_in_version = 2.7.0
+
fixed_in_version = 2.9.0
 
show = id, category, status, fixed_in_version, updated, summary, comment, resolution
 
show = id, category, status, fixed_in_version, updated, summary, comment, resolution
 
</mantis>
 
</mantis>
-->
 
  
 
English [[Image:Feed-icon.png]]
 
English [[Image:Feed-icon.png]]

Revision as of 13:38, 10 November 2017


1def quickSort(arr):
2	less = []
3	pivotList = []
4	more = []
5	if len(arr) <= 1:
6		return arr
7	else:
8		pass