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 trialChristopher Roach
585 PointsCan someone please explain the answer to this question for me?
I have no idea why this answer is not working, I've tried the equation in playground and it works correctly.
// Enter your code below
func getRemainder(value: Int, divisor: Int) -> Int {
let getRemainderSum = value % divisor
return getRemainderSum
}
2 Answers
Magnus Hållberg
17,232 PointsHi! There is nothing wrong with the code, its just that you have forgotten the internal names "a" and "b". For simplicity you could skip the constant and just return the calculation.
return a % b
Christopher Roach
585 PointsDon't worry, figured it out :)
func getRemainder(value a: Int, divisor b: Int) -> Int { return a % b }
Magnus Hållberg
17,232 PointsGreat! Glad I could help.
Christopher Roach
585 PointsChristopher Roach
585 PointsHi Magnus,
Thanks for the quick reply. Would you please be able to write out the entire correct function as I seem to try this and it's still not working. I want to figure out where I am going wrong.
Thanks,
Chris