백준

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

inns21 2023. 7. 29. 23:03

n,m = map(int, input().split())
n_set = set(map(int, input().split()))
m_set = set(map(int, input().split()))
print(len(n_set.difference(m_set)) + len(m_set.difference(n_set)))