Check Strict Superset

  • + 0 comments

    Master_set = set(map(int,input().split())) N = int(input()) count = 0 for i in range(N): other_set = set(map(int,input().split())) if Master_set >= other_set: count += 1 if count == N: print("True") else: print("False")