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 trialIvan Cadena
2,949 PointsSwitch Statements
Could somebody tell me what im doing wrong?
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 {
case "LIE","BEL","BGR": europeanCapitals.append
case "IND","VNM": asianCapitals.append
default "USA","MEX","BRA": otherCapitals.append
}
}
1 Answer
Jennifer Nordell
Treehouse TeacherFirst, I'd like to say how well you're doing. You're not going to get much closer than this without actually getting it correct! So let's take a look:
for (key, value) in world {
switch (key) {
case "LIE","BEL","BGR": europeanCapitals.append(value)
case "IND","VNM": asianCapitals.append(value)
default: otherCapitals.append(value)
}
}
First, you're missing some parentheses around your key. You set up the logic for the first two cases beautifully, and even did the append, but then you forgot to say what you're appending. We're appending the value at that key. And third, because everything else is going to go into otherCapitals the default should just say default and not have any conditions.
Hope this helps!