Difference between revisions of "Sandbox"

From Heureka Wiki
Sandbox
Jump to navigation Jump to search
Line 1: Line 1:
 
{{DISPLAYTITLE:sandbox}}
 
{{DISPLAYTITLE:sandbox}}
  
<source lang="csharp" style="border:3px dashed blue">
+
<syntaxhighlight lang="python" line='line'>
private int myfunc()
+
def quickSort(arr):
{
+
less = []
Console.WriteLine("Hello world!");
+
pivotList = []
return 0;
+
more = []
}
+
if len(arr) <= 1:
</source>
+
return arr
 +
else:
 +
pass
 +
</syntaxhighlight>
  
 
<!--
 
<!--

Revision as of 09:56, 13 October 2017


1def quickSort(arr):
2	less = []
3	pivotList = []
4	more = []
5	if len(arr) <= 1:
6		return arr
7	else:
8		pass


English Feed-icon.png RSS -->