Answers for "how to make a set in swift"

0

set in swift

let setExample: Set = ["Apple", "Orange", "Banana", "Apple"]
if setExample.contains("Apple") {
    print("Its healthy")
}
print(setExample)
// OUTPUT:
//Its healthy
//["Orange", "Apple", "Banana"]
Posted by: Guest on January-24-2021

Code answers related to "how to make a set in swift"

Code answers related to "Swift"

Browse Popular Code Answers by Language