You are viewing a single comment's thread. Return to all comments →
read_A = set(map(int, input().split())) n = int(input()) count = 0 for x in range(n): read_B = set(map(int, input().split())) if len(read_B - read_A) == 0: count += 1 print(count == n)
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 →