Testht

来自Microduino Wikipedia
Iascchen@gmail.com讨论 | 贡献2017年7月7日 (五) 14:41的版本
跳转至: 导航搜索
1 def quickSort(arr):
2 	less = []
3 	pivotList = []
4 	more = []
5 	if len(arr) <= 1:
6 		return arr
7 	else:
8 		pass