Skip to content

Commit 4df419b

Browse files
authoredSep 2, 2020
33rd Challenge
Set .difference() Operation
1 parent d7e5f51 commit 4df419b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎Set .difference() Operation

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
input()
2+
english = set(map(int,input().split()))
3+
input()
4+
french = set(map(int,input().split()))
5+
print(len(english.difference(french)))

0 commit comments

Comments
 (0)
Please sign in to comment.