본문 바로가기
파이썬알고리즘

20210609#(37) 백준 2750(브론즈1) 파이썬

by zho 2021. 6. 9.

https://www.acmicpc.net/problem/2750

 

2750번: 수 정렬하기

첫째 줄에 수의 개수 N(1 ≤ N ≤ 1,000)이 주어진다. 둘째 줄부터 N개의 줄에는 숫자가 주어진다. 이 수는 절댓값이 1,000보다 작거나 같은 정수이다. 수는 중복되지 않는다.

www.acmicpc.net

 

arr=[]
for i in range(int(input())):
  a=int(input())
  arr.append(a)
arr.sort()
newarr=[]
for i in arr:
  if i not in newarr:
    newarr.append(i)    

for i in range(len(newarr)):
  print(newarr[i])

728x90