Eliminar els repetits


Submit solution

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

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

Donat un llistat de \(N\) elements, cal mostrar-los per pantalla en el mateix ordre però eliminant els elements repetits.

Input Format

Primera línia:

  • \(N\): La quantitat total d'elements.

Segona línia:

  • Els elements que s'han llegit, en el mateix ordre, però sense mostrar cap de repetit.

Constraints

  • \(N\) > 0~

Output Format

En una sola línia, separant els elements amb un espai.

Test Case 1

Input
10
1 2 3 4 4 5 6 6 6 7
Output
1 2 3 4 5 6 7

Test Case 2

Input
6
hola mundo hola programacion openai openai
Output
hola mundo programacion openai

Test Case 3

Input
1
elpuig
Output
elpuig

Authorship: Luís Elia

CC BY-NC-SA 4.0