Skip to content

Instantly share code, notes, and snippets.

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