백준 문제 링크
듣보잡
- 모든 단어를 temp에 넣는다.
- Collections 모듈의 Counter 함수를 사용하여
2개 이상으로 나온 단어를 answer에 넣는다.- 문제에서 요구하는 형식대로 출력하면 끝!
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])