[SWEA D3] 5292. [파이썬 S/W 문제해결 최적화] 7일차 - 정수의 교집합 Python

손주애·2020년 12월 17일
0

코딩테스트

목록 보기
16/22

T = int(input())

for test_case in range(1, T + 1):
    N, M = map(int, input().split())
    A = set(map(int, input().split()))
    B = set(map(int, input().split()))

    print(f'#{test_case} {len(A.intersection(B))}')

profile
백엔드 개발자입니다:)

0개의 댓글