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 trialAnan Almasri
Courses Plus Student 3,221 PointsI need help here, I don't how to return this
func getTowerCoordinates(location : String) -> (Double, Double) { let Alt : (Double,Double) switch location { case "Eiffel Tower": Alt = (48.8582, 2.2945) case "Great Pyramid": Alt = (29.9792, 31.1344) case "Sydney Opera House": Alt = (33.8587, 151.2140) default:(0,0) }
return Alt
}
// Enter your code below
1 Answer
David Lin
35,864 PointsLooks like a few problems with your implementation:
- You'll need to make Alt a variable ("var") so that you can assign something to it. You've made it a constant with "let".
- You'll need to assign Alt to (0,0) for the default case.
- You'll also need to return Alt at the end of the function.
Also, you might try returning directly, rather than assigning an intermediate variable ... something like ...
func getTowerCoordinates(name: String) -> (Double, Double) {
switch name {
case "Eiffel Tower": return (48.8582, 2.2945)
... etc ...
}
}