Problem

1/8

Clasificación rápida: inicio (Python)

Theory Click to read/hide

Error

Problem

Dado N (1 <= N <= 100000) seguido de N números naturales desde 1 hasta < code>100< /code>. Imprime N números en orden no decreciente.
 
Ejemplos


# Entrada Salida
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!