Tests - Syntax

From ACSL Category Descriptions
Revision as of 21: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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
def quickSort(arr):
	less = []
	pivotList = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass


#include <stdio.h>
int main()
{
	printf ("Hello world!");
	return 0;
}