HackerRank Python - Set Intersection Operation
.intersection()
The .intersection() operator returns the intersection of a set and the set of elements in an iterable.
Sometimes, the & operator is used in place of the .intersection() operator, but it only operates on the set of elements in set.
The set is immutable to the .intersection() operation (or & operation).
- # Enter your code here. Read input from STDIN. Print output to STDOUT
-
- e = int(input())
- eng = set(map(int,input().split()))
- f = int(input())
- fre = set(map(int,input().split()))
- print(len(eng & fre))