#1269
a, b = map(int,input().split())
num1 = set(map(int,input().split()))
num2 = set(map(int,input().split()))
print(len(num1-num2)+len(num2-num1))
- list는 빼기가 안 됨 그래서 set을 사용해서 손쉽게 처리했다.
'문제풀이 > 백준(Boj) 문제풀이' 카테고리의 다른 글
[백준][구현] - 2743. 단어 길이 재기 (0) | 2022.08.04 |
---|---|
[백준][파이썬] - 1764. 듣보잡(파이썬/python) (0) | 2022.07.20 |
[백준][파이썬] - 10816. 숫자 카드 2(파이썬/python) (0) | 2022.07.20 |
[백준][파이썬] - 2480. 주사위 세개(파이썬/python) (0) | 2022.07.20 |
[백준][파이썬] - 14425. 문자열 집합(파이썬/python) (0) | 2022.07.20 |