Set .symmetric_difference() Operation

  • + 0 comments

    For Python3 Platform

    n_eng = int(input())
    Eng = set(map(int, input().split()))
    n_frn = int(input())
    Frn = set(map(int, input().split()))
    
    print(len(Eng ^ Frn))