Swift program to check a set is the strict superset of another set collection

Here, we are going to learn how to check a set is the strict superset of another set collection in Swift programming language?
Submitted by Nidhi, on June 29, 2021

Problem Solution:

Here, we will create two sets of integer elements using the Set collection. Then we will check a set is the strict superset of another set or not using the isStrictSuperset() function.

Program/Source Code:

The source code to check a set is the strict superset of another set collection is given below. The given program is compiled and executed successfully.

// Swift program to check a set is the strict superset 
// of another set collection

import Swift

var FirstSet:Set<Int>  = [1,2,3,4]
var SecondSet:Set<Int> = [2,3]

print("First set : ",FirstSet)
print("Second set: ",SecondSet)

if(FirstSet.isStrictSuperset(of: SecondSet))
{
    print("FirstSet is the strict superset of SecondSet.")
}
else
{
    print("FirstSet is not strict superset of SecondSet.")
}

Output:

First set :  [1, 4, 2, 3]
Second set:  [3, 2]
FirstSet is the strict superset of SecondSet.

...Program finished with exit code 0
Press ENTER to exit console.

Explanation:

In the above program, we imported a package Swift to use the print() function using the below statement,

import Swift

Here, we created two sets FirstSet, SecondSet that contains integer elements. Then we used isStrictSuperset() function to check FirstSet is the strict superset of SecondSet using isSuperset() function. The isStrictSuperset() function return Boolean value and then we printed the appropriate message on the console screen.

Swift Set Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.