You are viewing a single comment's thread. Return to all comments →
N=int(input()) for i in range(N): size=int(input()) A=set(map(int,input().split()))
size_B=int(input()) B=set(map(int,input().split())) if A.issubset(B): print(True) else: print(False)
Seems like cookies are disabled on this browser, please enable them to open this website
Check Subset
You are viewing a single comment's thread. Return to all comments →
N=int(input()) for i in range(N): size=int(input()) A=set(map(int,input().split()))