728x90
반응형
그냥 set을 사용해서 풀었다. 딕셔너리를 사용해서 풀어도 똑같다.
import sys
input = sys.stdin.readline
N, M = map(int, input().split())
s = set([input() for _ in range(N)])
cnt = 0
for _ in range(M):
t = input()
if t in s:
cnt += 1
print(cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 20528번 끝말잇기(python) (0) | 2021.03.20 |
---|---|
백준 알고리즘 5558번 チーズ(python) (0) | 2021.03.20 |
백준 알고리즘 9663번 N-Queen(python) (0) | 2021.03.20 |
백준 알고리즘 1016번 제곱 ㄴㄴ 수(python) (0) | 2021.03.20 |
백준 알고리즘 11660번 구간 합 구하기 5(python) (0) | 2021.03.20 |