Problem

1/8

Sắp xếp nhanh: bắt đầu (Python)

Theory Click to read/hide

Error

Problem

Cho N (1 <= N <= 100000) theo sau là N các số tự nhiên từ 1 đến < code>100< /code>. In các số N theo thứ tự không giảm.
 
Ví dụ
<đầu>

# Đầu vào Đầu ra
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!