Tests - Syntax

From ACSL Category Descriptions
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;
}