You are viewing a single comment's thread. Return to all comments →
dims = list(map(int, input().split())) whole = list(map(int, input().split())) a = set(map(int, input().split())) b = set(map(int, input().split())) happy = 0 for i in whole: if i in a: happy +=1 if i in b: happy -=1 print(happy)
Seems like cookies are disabled on this browser, please enable them to open this website
No Idea!
You are viewing a single comment's thread. Return to all comments →