Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Swift 2.0 Collections and Control Flow Control Flow With Conditional Statements Working with Switch Statements

To do this you're going to use a switch statement and switch on the key. For cases where the key is a European country,

Here we have a dictionary of type [String: String] that contains a three letter country code as a key and that country's capital city as the associated value.

We also have three empty arrays, europeanCapitals, asianCapitals, and otherCapitals. The goal is to iterate through the dictionary and end up with just the names of the capital cities in the relevant array.

For example, after you execute the code you write, europeanCapitals will have the values ["Vaduz", "Brussels", "Sofia"] (not necessarily in that order).

To do this you're going to use a switch statement and switch on the key. For cases where the key is a European country, append the value (not the key!) to the europeanCapitals array. For keys that are Asian countries, append the value to asianCapitals and finally for the default case, append the values to otherCapitals.

I've already set up the for in loop for you so jump right in!

2 Answers

Hi Shadreck,

As the question says, you need to write a switch/case statement to divide the entries in the world dictionary into three arrays, depending on their key.

The key/value pair is passed into the for loop; the loop iterates through the dictionary one record at a time. At each pass, you need to switch on the key and send the value to the right array.

    switch key{
      case "BGR", "BEL", "LIE":
        europeanCapitals.append(value)
      case "IND", "VNM":
        asianCapitals.append(value)
      default: 
        otherCapitals.append(value)
    }

So, here, we are switching on the key and sending the value associated with the keys "BGR", "LIE" and "BEL" to europeanCapitals. A similar opertaion occurs with all the other keys as they are passed in.

I hope that helps.

Steve.

thus helpful thanks