Set .symmetric_difference() Operation

  • + 0 comments
    a = int(input())
    eng = set(map(int, input().split()))
    b = int(input())
    fre = set(map(int, input().split()))
    
    print(len(eng ^ fre))