1. 항복할 때 추가 안함
2. 사전 순으로 정렬 안함
from collections import Counter
T = int(input())
arr= []
while T :
name = list(input())
arr.append(name[0])
T -= 1
answer = []
counter = Counter(arr)
for i in counter :
if counter[i] >= 5 : answer.append(i)
answer.sort()
if not answer : print("PREDAJA" )
else : print(''.join(answer))
'코테' 카테고리의 다른 글
[프로그래머스] <n진수 게임> 파이썬 (0) | 2021.04.07 |
---|---|
[백준] <1157번 단어 공부> 파이썬 (0) | 2021.04.07 |
[백준] <8958번 OX퀴즈> 파이썬 (0) | 2021.04.07 |
[프로그래머스] <가장 큰 정사각형 찾기> 파이썬 (0) | 2021.04.06 |
[프로그래머스] <디스크 컨트롤러> 파이썬 (0) | 2021.04.05 |