Post

[SWEA] 2948. 문자열 교집합 (python)

📌문제

Alt text

💪아이디어

set의 교집합을 사용하여 두 문자열 집합에 공통적으로 들어있는 문자열을 찾았다.

🥂코드

1
2
3
4
5
6
7
8
9
T = int(input())
for tc in range(1,T+1):
    n,m = map(int, input().split())
    s1,s2 = set(),set()
    for e1 in input().split():
        s1.add(e1)
    for e2 in input().split():
        s2.add(e2)
    print('#{} {}'.format(tc,len(s1&s2)))
This post is licensed under CC BY 4.0 by the author.

Comments powered by Disqus.