BOJ - 1764

주의·2024년 1월 25일
0

boj

목록 보기
114/214

백준 문제 링크
듣보잡

❓접근법

  1. 모든 단어를 temp에 넣는다.
  2. Collections 모듈의 Counter 함수를 사용하여
    2개 이상으로 나온 단어를 answer에 넣는다.
  3. 문제에서 요구하는 형식대로 출력하면 끝!

👌🏻코드

from collections import Counter
N, M = map(int, input().split())

temp = []

for _ in range(N+M):
    temp.append(input())
    
x = Counter(temp)

answer = []
for name, value in x.items():
    if value >= 2:
        answer.append(name)
        
answer.sort()
print(len(answer))
for i in range(len(answer)):
    print(answer[i])

0개의 댓글