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 837c65c commit 59d8433Copy full SHA for 59d8433
Challenges/Sets/Set.intersection().py
@@ -0,0 +1,5 @@
1
+num_eng_subs = input()
2
+eng_subs = set(map(int, input().split()))
3
+num_fr_subs = input()
4
+fr_subs = set(map(int, input().split()))
5
+print(len(eng_subs.intersection(fr_subs)))
0 commit comments