Set .difference() Operation Hackerrank Solution in Python 3 July 07, 2019 a=int(input()) set1=set(map(int,input().split())) b=int(input()) set2=set(map(int,input().split())) set3=set1.difference(set2) print(len(set3)) Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment