测试,我会在这里补充我的maven知识
def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass