Check Strict Superset

  • + 1 comment

    ` _set = set(map(int, input().split()))

    print(all([set(map(int, input().split())) <= _set for _ in range(int(input()))])) `