728x90
https://www.acmicpc.net/problem/1269
n, m = map(int, input().split())
a = set(map(int, input().split()))
b = set(map(int, input().split()))
c = a ^ b
print(len(c))
대칭 차집합 사용법은 https://hgk5722.tistory.com/59에 있다.
.set() 생성자를 사용할 줄 안다면 쉬운 문제였다.
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 11279 파이썬(python) : 최대 힙 (0) | 2022.06.19 |
---|---|
[백준] 11478 파이썬(python) : 서로 다른 부분 문자열의 개수 - (★) (0) | 2022.06.18 |
[백준] 1764 파이썬(python) : 듣보잡 - (★) (0) | 2022.06.18 |
[백준] 1620 파이썬(python) : 나는야 포켓몬 마스터 이다솜 (0) | 2022.06.17 |
[백준] 14425 파이썬(python) : 문자열 집합 (0) | 2022.06.17 |