We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
A=set(input().split())
n=int(input())
t=0
f=0
for i in range(n):
N=set(input().split())
if A.issuperset(N):
t=t+1
else:
f=f+1
if f!=0:
print('False')
else:
print('True')
Cookie support is required to access HackerRank
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 →
A=set(input().split()) n=int(input()) t=0 f=0 for i in range(n): N=set(input().split()) if A.issuperset(N): t=t+1 else: f=f+1 if f!=0: print('False') else: print('True')