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 trialCarter Elgie
2,536 PointsExtending a Native Type Code Challenge
Every time I check my work it says, "Bummer: Make sure you're adding an add method that takes an Int and returns an Int?" I am pretty sure my syntax is correct, and I don't know what I am doing wrong.
Carter Elgie
2,536 PointsSorry, I thought it was on there. Here it is:
extension String {
func add(_ value: Int) -> Int {
if let intValue = Int(Self) {
return intValue + value
} else {
return nil
}
}
}
3 Answers
Magnus Hållberg
17,232 PointsThere are some small mistakes. First, your return has to be optionall so its Int? not just Int. Also ”self” is spelled with lower case letters. Hope this helps
Carter Elgie
2,536 PointsI tried that, but it's still saying the same thing. I've even tried other people's answers that they said worked, but it still does this.
Magnus Hållberg
17,232 PointsThis is not an actual error but you have omitted the external label in the method, remove that and you will pass. I used your code above and removed the omitted label, changed the return to make it optional and wrote self in lower case letters and that passed the challenge.
Carter Elgie
2,536 PointsOk, now it worked. Thanks!
Magnus Hållberg
17,232 PointsMagnus Hållberg
17,232 PointsCould you post your code, otherwise its hard to help.