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 Collections and Control Flow Control Flow With Conditional Statements Working With Switch Statements

Francisco Quintero
PLUS
Francisco Quintero
Courses Plus Student 1,586 Points

How do i solve this code challenge?

am trying to solve the code challenge, but cant get the answer, this is what i have done

operators.swift
var europeanCapitals: [String] = []
var asianCapitals: [String] = []
var otherCapitals: [String] = []

let world = [
  "BEL": "Brussels", 
  "LIE": "Vaduz", 
  "BGR": "Sofia", 
  "USA": "Washington D.C.", 
  "MEX": "Mexico City", 
  "BRA": "Brasilia", 
  "IND": "New Delhi", 
  "VNM": "Hanoi"]

for (key, value) in world {
switch (key, value) {
    case "BEL": europeanCapitals.append("Brussels")
    case "LIE": europeanCapitals.append("Vaduz")
    case "BGR": europeanCapitals.append("Sofia")
    case "USA": otherCapitals.append("Washington D.C.")
    case "MEX": otherCapitals.append("Mexico City")
    case "BRA": otherCapitals.append("Brasilia")
    case "IND": asianCapitals.append("New Delhi")
    default: asianCapitals.append("Hanoi")
    }
}

2 Answers

Hiya,

Switch on key only and append the value to the correct array. You can switch on multiple keys at once.

switch(key){
  case "BEL", "LIE", "BGR":
    europeanCapitals.append(value)
    .
    .
}

Make sense?

Steve.

The otherCapitals array is the default condition for the switch statement so do the other array completions first.

Francisco Quintero
PLUS
Francisco Quintero
Courses Plus Student 1,586 Points

Thank you, i knew that my problema had to do with the switch statement, i just did not know how to set it up for a dictionary, thanks for the advice

Let me know how you get on ... let's make sure you've got this! :+1: