ESComplexAsset

Revision as of 03:42, 27 December 2022 by Wikiadmin (talk | contribs)

Test

public static void main(String[] args){

}

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