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