You are viewing a single comment's thread. Return to all comments →
s1 = set(map(int,input().split())) n = int(input()) s2 = set(map(int,input().split())) if s1.issuperset(s2): print(False) else: print(True)
can anybody tell wher the problem is?
Check Strict Superset
You are viewing a single comment's thread. Return to all comments →
s1 = set(map(int,input().split())) n = int(input()) s2 = set(map(int,input().split())) if s1.issuperset(s2): print(False) else: print(True)