알고리즘 유형 : 집합
풀이 참고 없이 스스로 풀었나요? : 학습
https://www.acmicpc.net/problem/14425
import sys
input = sys.stdin.readline
N, M = map(int, input().split())
S = set()
for _ in range(N):
S.add(input().strip())
count = 0
for _ in range(M):
if input().strip() in S:
count += 1
print(count)
풀이 요약
배운 점, 어려웠던 점