[백준] 1269번 : 대칭 차집합 (파이썬)

뚝딱이 공학도·2022년 5월 11일
0

문제풀이_백준

목록 보기
133/160



문제



나의 답안

an,bn=map(int,input().split())
a=set(map(int,input().split()))
b=set(map(int,input().split()))
    
print(len(a-b)+len(b-a))

접근 방법

  • set으로 입력을 받고, 차집합을 구한 후 크기를 구해 더하면 된다.

0개의 댓글