#1445. python-快速排序-输入n并依次输入n个整数,并通过快速排序进行从小到大排序并打印
python-快速排序-输入n并依次输入n个整数,并通过快速排序进行从小到大排序并打印
Background
Description
python-快速排序-输入n并依次输入n个整数,并通过快速排序进行从小到大排序并打印
Format
Input
Output
Samples
5
10
70
5
3
20
[10, 70, 5, 3, 20]
[3, 5, 10, 20, 70]
Limitation
1s, 1024KiB for each test case.