[ BOJ / Python ] 10867번 중복 빼고 정렬하기

황승환·2021년 10월 24일
0

Python

목록 보기
10/498

C++로 풀어본 문제를 파이썬으로도 풀어보았다. C++로 해결한 방법과 조금 다르게 하였다.

  • 중복 확인 없이 모두 입력받는다.
  • 입력받은 배열을 정렬한다.
  • 정렬한 배열을 빈 배열 result에 대한 result.count() 내장함수를 통하여 result.count()가 0일 때만 result에 넣어준다.

Code

n=int(input())
arr=map(int, input().split())
result=[]

arr1=sorted(arr)
for i in range(len(arr1)):
    if result.count(arr1[i])==0:
        result.append(arr1[i])
for i in range(len(result)):
    print(result[i], end=' ')

profile
꾸준함을 꿈꾸는 SW 전공 학부생의 개발 일기

0개의 댓글