Ordenar seqüència


Submit solution

Points: 10
Time limit: 5.0s
Memory limit: 256M

Author:
Problem types
Allowed languages
C#, Go, Java, Python

Donada una seqüència de números, ordenar-la en ordre ascendent.

Input Format

El primer número \(N\) indica el tamany de la seqüència. A continuació ve la seqüència.

Constraints

\(-\)

Output Format

La seqüència ordenada de números, separats per espais.

Test Case 1

Input
3   2 1 3
Output
1 2 3

Test Case 2

Input
5    20 10 40 50 30
Output
10 20 30 40 50

Test Case 3

Input
5    50 40 30 20 10
Output
10 20 30 40 50

Test Case 4

Input
1   500
Output
500

Test Case 5

Hidden: this is a private test case!

Test Case 6

Hidden: this is a private test case!

Test Case 7

Hidden: this is a private test case!


Authorship: Rusben

CC BY-NC-SA 4.0