In this problem, you need to implement a math operation that checks whether the second set is a strict superset of the first set.
It means, the second set should contain all elements of the first set, but the sets must not be equal.
In this problem, you need to implement a math operation that checks whether the second set is a strict superset of the first set.
It means, the second set should contain all elements of the first set, but the sets must not be equal.
Sample Input 1:
1 2 3
4 1 2 3Sample Output 1:
trueSample Input 2:
b a c
e c d bSample Output 2:
falseSample Input 3:
a b c
c b aSample Output 3:
falseCreate a free account to access the full topic