#1448. python-快速排序-定义一个列表[10, 7, 8, 9, 1, 5],并通过快速排序进行从大到小排序并打印

python-快速排序-定义一个列表[10, 7, 8, 9, 1, 5],并通过快速排序进行从大到小排序并打印

Background

Description

python-快速排序-定义一个列表[10, 7, 8, 9, 1, 5],并通过快速排序进行从大到小排序并打印

Format

Input

Output

Samples


[10, 7, 8, 9, 1, 5]
[10, 9, 8, 7, 5, 1]

Limitation

1s, 1024KiB for each test case.