User:Fifo F/sandbox

From Not a Wiki

User sandbox

This is Fifo F’s personal sandbox. A user sandbox is a subpage of the user's user page. It serves as a testing spot and page development space for the user and is not an article.


Click here to create/edit your own sandbox.

Testing area

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