Post

Replies

Boosts

Views

Activity

Reply to Need help Exercise Partial Iteration (Swift playground)
var messageIsFound = false var index = 0 while !messageIsFound {     messageIsFound = aliceMessages[index].contains("Caterpillar")     if messageIsFound {         print("\(index): \(aliceMessages[index])")     }     index += 1 }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’22