“Testht”的版本间的差异
(创建页面,内容为“<syntaxhighlight lang="python" line='line'> def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight>”) |
|
(未显示同一用户的1个中间版本) | |
(没有差异)
|
2017年7月7日 (五) 15:01的最新版本
1 def quickSort(arr):
2 less = []
3 pivotList = []
4 more = []
5 if len(arr) <= 1:
6 return arr
7 else:
8 pass