You are viewing a single comment's thread. Return to all comments →
_ = input() a = set(map(int, input().split())) _ = input() b = set(map(int, input().split())) print(len(a&b))
Set .intersection() Operation
You are viewing a single comment's thread. Return to all comments →