Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
the best way to solution this kata!
Thank Jorge, I'll trying improving it in the noon Hahaha
BTW your approach was quite clever :)
I like the rigth away check for wolf being last before doind array manipulation or lookups. But I would change it to a
guard let queue.last != "wolf"
else ...You could add 1 more guard at the beginning to check if there is a wolf in the array
guard let index = queue.lastIndex(of: "wolf") else ...