문제
https://www.acmicpc.net/problem/2910
풀이
from collections import Counter
n,m = map(int,input().split())
arr = list(map(int,input().split()))
x = Counter(arr).most_common()
for a,b in x:
for _ in range(b):
print(a,end=' ')
Counter(arr).most_common()를 사용해준다.
꺄 숏코딩 또 올라갔다!
'코딩테스트 > Python' 카테고리의 다른 글
[Python] 백준 #2529 - 부등호 (2) | 2022.05.16 |
---|---|
[Python] 백준 #14620 - 꽃길 (0) | 2022.05.16 |
[Python] 백준 #3474 - 교수가 된 현우 (0) | 2022.05.16 |
[Python] 백준 #17298 - 오큰수 (0) | 2022.05.16 |
[Python] 백준 #2636 - 치즈 (0) | 2022.05.15 |