You are viewing a single comment's thread. Return to all comments →
T = int(input()) for _ in range(T): NUMA, SETA = int(input()), set(map(int, input().split())) NUMB, SETB = int(input()), set(map(int, input().split())) print(SETA <= SETB)
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 →