“Maven”的版本间的差异

来自Dennis C.K Deng-Wiki
跳转至: 导航搜索
第1行: 第1行:
 
测试,我会在这里补充我的maven知识
 
测试,我会在这里补充我的maven知识
 
[[文件:wchat.JPG]]
 
[[文件:wchat.JPG]]
<syntaxhighlight lang="python" inline>lambda x: x * 2</syntaxhighlight>
+
<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的版本

测试,我会在这里补充我的maven知识 Wchat.JPG

def quickSort(arr):
	less = []
	pivotList = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass