You are viewing a single comment's thread. Return to all comments →
for i in range(int(input())): l_a, a, l_b, b =( input(), set(map(int, input().split())), input(), set(map(int, input().split())) ) print(a.issubset(b))
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 →