Difference between revisions of "User:DBrettle"

From Deep Blue Robotics Wiki
Jump to: navigation, search
(Replaced content with " '''''Test''''' '''content'''.")
Line 1: Line 1:
  
 
'''''Test''''' '''content'''.
 
'''''Test''''' '''content'''.
 +
 +
<syntaxhighlight lang="python" line>
 +
def quickSort(arr):
 +
less = []
 +
pivotList = []
 +
more = []
 +
if len(arr) <= 1:
 +
return arr
 +
else:
 +
pass
 +
</syntaxhighlight>

Revision as of 06:07, 6 October 2016

Test content.

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