You are viewing a single comment's thread. Return to all comments →
here is my code:
T=int(input()) for i in range(T): len_a=int(input()) a=set(map(int, input().split())) len_b=int(input()) b=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 →
here is my code: