Populate the collection
var vowels: Set = ["a", "e", "i", "o","u"]
To create a set filled with values, use the Set
keyword before the assignment operator.
Comments
var vowels: Set = ["a", "e", "i", "o","u"]
To create a set filled with values, use the Set
keyword before the assignment operator.