We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57540fa commit 41af2ddCopy full SHA for 41af2dd
Python/Sets/Set .union() Operation/Solution.py
@@ -0,0 +1,3 @@
1
+_, en_subscribers = input(), set(map(int, input().split()))
2
+_, fr_subscribers = input(), set(map(int, input().split()))
3
+print(len(en_subscribers.union(fr_subscribers)))
0 commit comments