Skip to content

Instantly share code, notes, and snippets.

@amulyakashyap09
Created December 31, 2017 16:36
Show Gist options
  • Save amulyakashyap09/b1b042a052276194630786afd4a174f2 to your computer and use it in GitHub Desktop.
Save amulyakashyap09/b1b042a052276194630786afd4a174f2 to your computer and use it in GitHub Desktop.
Symmetric Difference of Sets | Hackerrank
n = int(input())
enp = set(map(int, input().split()))
b = int(input())
fnp = set(map(int, input().split()))
c = enp.symmetric_difference(fnp)
print(len(c))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment