https://www.acmicpc.net/problem/1269
#백준 1269 대칭 차집합
import sys
input = sys.stdin.readline
n, m = map(int, input().split())
a = set(map(int, input().split()))
b = set(map(int, input().split()))
print(len(a-b) + len(b-a))
차집합은 그냥 {A} - {B}로 구할 수 있습니다.
이번에도 쉬어가는 문제 🤭
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 파이썬 4153 직각 삼각형 (0) | 2022.10.03 |
---|---|
[Python] 백준 파이썬 11478 서로 다른 부분 문자열의 개수 (0) | 2022.10.02 |
[Python] 백준 파이썬 1764 듣보잡 (0) | 2022.09.30 |
[Python] 백준 파이썬 10816 숫자 카드 2 (0) | 2022.09.29 |
[Python] 백준 파이썬 1620 나는야 포켓몬 마스터 이다솜 (0) | 2022.09.28 |