forked from keshavsingh4522/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_strict_super_set.py
52 lines (40 loc) · 1.22 KB
/
check_strict_super_set.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
'''
You are given a set and other sets.
Your job is to find whether set is a strict superset of each of the sets.
Print True, if is a strict superset of each of the sets. Otherwise, print False.
A strict superset has at least one element that does not exist in its subset.
Example
Set is a strict superset of set.
Set is not a strict superset of set.
Set is not a strict superset of set.
Input Format
The first line contains the space separated elements of set .
The second line contains integer , the number of other sets.
The next lines contains the space separated elements of the other sets.
Constraints
Output Format
Print True if set is a strict superset of all other sets. Otherwise, print False.
Sample Input 0
1 2 3 4 5 6 7 8 9 10 11 12 23 45 84 78
2
1 2 3 4 5
100 11 12
Sample Output 0
False
Explanation 0
Set is the strict superset of the set but not of the set because is not in set .
Hence, the output is False.
'''
# Enter your code here. Read input from STDIN. Print output to STDOUT
s = set(map(int, input().split()))
n1=int(input())
c=0
for i in range(n1):
s1=set(map(int, input().split()))
if s.issuperset(s1):
c+=1
else:
print(False)
break
if c==n1:
print(True)