“Test”的版本间的差异

来自Labplus盛思维基百科
跳转至: 导航搜索
第2行: 第2行:
 
* [[ labplus软件安装指南]]
 
* [[ labplus软件安装指南]]
 
{{111}}
 
{{111}}
<source lang="javascript" line start="2" highlight="4-6">
+
<syntaxhighlight lang="python" line='line'>
// SyntaxHighlighter makes your code snippets beautiful without tiring your servers.
+
def quickSort(arr):
// http://alexgorbatchev.com
+
less = []
var setArray = function(elems) {
+
pivotList = []
    this.length = 0;
+
more = []
    push.apply(this, elems);
+
if len(arr) <= 1:
    return this;
+
return arr
}
+
else:
</source>
+
pass
 +
</syntaxhighlight>

2018年3月8日 (四) 17:40的版本

模板:111

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