Set .intersection() Operation

  • + 0 comments
    n = int(input())
    eng_news = list(map(int, input().split(' ')))
    b = int(input())
    french_news = list(map(int,input().split()))
    
    result = set(eng_news).intersection(set(french_news))
    print(len(result))