You are viewing a single comment's thread. Return to all comments →
set_A = set(map(int,input().split())) n = int(input()) res = [] for _ in range(n): set_B = set(map(int,input().split())) flag = set_A.issuperset(set_B) res.append(flag) print(all(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 →