“Maven”的版本间的差异
来自Dennis C.K Deng-Wiki
| 第1行: | 第1行: | ||
测试,我会在这里补充我的maven知识 | 测试,我会在这里补充我的maven知识 | ||
[[文件:wchat.JPG]] | [[文件:wchat.JPG]] | ||
| − | <syntaxhighlight lang="python" | + | <syntaxhighlight lang="python" line='line'> |
| + | def quickSort(arr): | ||
| + | less = [] | ||
| + | pivotList = [] | ||
| + | more = [] | ||
| + | if len(arr) <= 1: | ||
| + | return arr | ||
| + | else: | ||
| + | pass | ||
| + | </syntaxhighlight> | ||
2017年9月17日 (日) 01:00的版本
def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass