Tests - Syntax
Revision as of 20:29, 11 July 2018 by Marc Brown (talk | contribs) (Created page with "<syntaxhighlight lang="python" line='line' highlight="1,4,8"> def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxh...")
def quickSort(arr):
less = []
pivotList = []
more = []
if len(arr) <= 1:
return arr
else:
pass
#include <stdio.h>
int main()
{
printf ("Hello world!");
return 0;
}