User:Kibje: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
<syntaxhighlight lang="c">
<syntaxhighlight lang="python" line='line'>
#include <stdio.h>
def quickSort(arr):
int main()
less = []
{
pivotList = []
printf ("Hello world!");
more = []
return 0;
if len(arr) <= 1:
}
return arr
else:
pass
</syntaxhighlight>
</syntaxhighlight>

Revision as of 11:10, 10 July 2018

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