You are viewing a single comment's thread. Return to all comments →
set_a = set(map(int, input().split())) conditional = True for _ in range(int(input())): set_x = set(map(int, input().split())) if not set_a > set_x: conditional = False break print(conditional)
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 →