You are viewing a single comment's thread. Return to all comments →
hope find simple
Seems like cookies are disabled on this browser, please enable them to open this website
Set .symmetric_difference() Operation
You are viewing a single comment's thread. Return to all comments →
n , m , o , p = int(input()), set(input().split()), int(input()), set(input().split())
sd = m ^ p
print(len(sd))
hope find simple