You are viewing a single comment's thread. Return to all comments →
SetA = set(input(``).split()) n = int(input())`` result = True for i in range(n): current_set = set(input().split()) if not SetA.issuperset(current_set): result = 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 →