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 trialSachin Modgill
850 Pointsnot sure where i am going wrong with my code...
i think the problem arises with my default statement, but cannot pinpoint the issue
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
Treehouse TeacherActually, 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
850 PointsThanks Jennifer, i can see my mistake now