Check Strict Superset

  • + 0 comments

    I prefer this

    SETA = set(map(int, input().split()))
    
    if all(SETA > set(map(int, input().split())) for _ in range(int(input()))):
        print(True)
    else:
        print(False)