You are viewing a single comment's thread. Return to all comments →
def stud_newspaper(a,b): return len(a.union(b)) if __name__ == '__main__': n = int(input()) eng = set(map(int, input().split())) b = int(input()) fre = set(map(int, input().split())) print(stud_newspaper(eng, fre))
Seems like cookies are disabled on this browser, please enable them to open this website
Set .union() Operation
You are viewing a single comment's thread. Return to all comments →