Difference between revisions of "Tests - Syntax"

From ACSL Category Descriptions
Jump to navigation Jump to search
(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...")
 
(No difference)

Latest revision as of 21:29, 11 July 2018

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


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