Answers for "check strict superset hackerrank solution"

0

check strict superset hackerrank solution

super_set=set(map(int,input().split()))
count=True
n=int(input())
for i in range(n):
    normal_set=set(map(int,input().split()))
    if len(super_set)>len(normal_set):
        if  not super_set.issuperset(normal_set):
            count=False
print(count)
Posted by: Guest on May-10-2020

Code answers related to "check strict superset hackerrank solution"

Python Answers by Framework

Browse Popular Code Answers by Language