You are viewing a single comment's thread. Return to all comments →
A = set(map(int, input().split())) N = int(input()) res = True while N > 0 and res: N -=1 res = A.issuperset(set(map(int, input().split()))) print (res)
`
Seems like cookies are disabled on this browser, please enable them to open this website
Check Strict Superset
You are viewing a single comment's thread. Return to all comments →
Ahha-ha! funny language
`