We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Set .symmetric_difference() Operation
Set .symmetric_difference() Operation
Sort by
recency
|
320 Discussions
|
Please Login in order to post a comment
For Python3
input() english_newspaper = set(input().split()) input() french_newspaper = set(input().split())
print(len(english_newspaper.symmetric_difference(french_newspaper)))
n = int(input()) A = set(input().split()) b = int(input()) B = set(input().split()) print(len(A^B))
Here's my code: