You are viewing a single comment's thread. Return to all comments →
n = list(map(int,input().split())) A = set(map(int,input().split())) B = set(map(int,input().split())) like = 0 for i in n: if i in A: like += 1 elif i in B: like -=1 print(like)
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 →