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

Sachin Modgill
Sachin Modgill
850 Points

not sure where i am going wrong with my code...

i think the problem arises with my default statement, but cannot pinpoint the issue

switch.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 {
    // Enter your code below
   switch key {
   case "BEL", "LIE", "BGR": print (europeanCapitals)
   case "IND", "VNM": print (asianCapitals)
   default "BRA", "MEX", "USA": print (otherCapitals)
   }
    // End code
}

2 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Actually, your problem is that you're trying to print something. And you should be appending the value at the key to the array. Here's a link to my code where I've answered this question previously. https://teamtreehouse.com/community/can-someone-help-me-with-this-switch-statement

Sachin Modgill
Sachin Modgill
850 Points

Thanks Jennifer, i can see my mistake now