You are viewing a single comment's thread. Return to all comments →
seta = list(map(int, input().split())) num = int(input()) result=bool(True) for _ in range(num): setx = list(map(int, input().split())) for i in setx: if(i in seta): continue else: result = bool(False) break print(result)
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 →