Difference between revisions of "ESComplexAsset"

Line 6: Line 6:
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
‎<syntaxhighlight lang="python" line>
 +
def quick_sort(arr):
 +
less = []
 +
pivot_list = []
 +
more = []
 +
if len(arr) <= 1:
 +
return arr
 +
else:
 +
pass
 +
‎</syntaxhighlight>

Revision as of 03:42, 27 December 2022

Test

public static void main(String[] args){

}

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