Set .difference() Operation

  • + 0 comments

    n=int(input()) s=set(input().split()) n1=int(input()) s1=set(input().split()) print(len(s - s1))