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 trialSebastian De Bruyne
3,832 PointsCode compiles perfectly in Xcode but does not pass the exercise
I have no idea why my code does not work for the exercize, it works perfectly on Xcode.
All I get is "Bummer make sure you are returning the correct values for each case statement".
Can anyone spot a mistake or tell me what the problem is with this code?
thanks a lot in advance for your attention and precious time spent helping me
// Enter your code belowlet result = getRemainder(value: 10, divisor: 3)
func coordinates (for location: String) -> (Double, Double) {
var lat: Double = 0.000
var lon: Double = 0.000
switch location {
case "Eifel Tower": lat = 48.8582; lon = 2.2945
case "Great Pyramid": lat = 29.9792; lon = 31.1344
case "Sydney Opera House": lat = 33.8587; lon = 151.2140
default: return (0,0)
}
return (Double: lat, Double: lon)
}
var loc = coordinates(for: "Eifel Tower")
1 Answer
andren
28,558 PointsYou have misspelled "Eiffel Tower" as "Eifel Tower" in your code (two f's vs one). If you fix that typo like this:
func coordinates (for location: String) -> (Double, Double) {
var lat: Double = 0.000
var lon: Double = 0.000
switch location {
case "Eiffel Tower": lat = 48.8582; lon = 2.2945 // Corrected Eifel to Eiffel
case "Great Pyramid": lat = 29.9792; lon = 31.1344
case "Sydney Opera House": lat = 33.8587; lon = 151.2140
default: return (0,0)
}
return (Double: lat, Double: lon)
}
Then your code will pass.
Sebastian De Bruyne
3,832 PointsSebastian De Bruyne
3,832 PointsThank you very much!! I spend the whole evening looking for a mistake and thinking it was reading a float rather than a double or trying different things that I didn't notice it was a spelling mistake.