Site Notice

hello, world

Syntax highlight

From Project-EPB Commons
Revision as of 08:52, 13 November 2019 by 机智的小鱼君 (talk | contribs) (Created page with "<syntaxhighlight lang="Python" line='line'> def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
1 def quickSort(arr):
2 	less = []
3 	pivotList = []
4 	more = []
5 	if len(arr) <= 1:
6 		return arr
7 	else:
8 		pass