Q:

Swift program to remove an element from a Set collection

belongs to collection: Swift Set Programs

0

Here, we will create a set of integer elements using the Set collection. Then we will remove the item from the created set collection using the remove() function.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to remove elements from a Set collection is given below. The given program is compiled and executed successfully.

// Swift program to remove an element 
// from a Set collection

import Swift

var IntegerSet:Set<Int> = [10, 20]

IntegerSet.insert(30)
IntegerSet.insert(40)
IntegerSet.insert(50)
IntegerSet.insert(60)

print("Set elements:")
for num in IntegerSet {
    print(num)
}

let removedItem = IntegerSet.remove(40)
print("Removed item: ",removedItem)

print("Updated Set elements:")
for num in IntegerSet {
    print(num)
}

Output:

Set elements:
10
50
60
40
20
30
Removed item:  Optional(40)
Updated Set elements:
10
50
60
20
30

...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 an IntegerSet set of integer elements. Then we removed an item from the set using remove() function. The remove() function returns the removed item into removedItem. After that, we printed the updated set and removed the item on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Swift program to remove the first element from a S... >>
<< Swift program to add elements into a Set collectio...