Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Main Page

From Amaranth Legacy, available at amaranth-legacy.community
Revision as of 22:18, May 6, 2023 by imported>Tesinormed

Welcome to Amaranth Legacy

Consult the User's Guide for information on using the wiki software.

Getting started

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


Contents