Problem

1/8

快速排序:开始(Python)

Theory Click to read/hide

Error

Problem

给定 N (1 <= N <= 100000) 后跟从 1100< 的 N 个自然数/code>. 按非递减顺序打印 N 个数。
 
例子
<头> <日># <正文>

输入 输出
1
5
3 1 2 4 2
1 2 2 3 4
Write the program below
def QS(A, st, end):                   
n = int(input())
a = list(map(int, input().split()))
QS(a, 0, n-1)
print(*a)            

     

Program check result

To check the solution of the problem, you need to register or log in!