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 trialMohammad Rehman
Courses Plus Student 2,416 PointsIm stuck on task one and two any help?
1 Answer
Marina Alenskaja
9,320 PointsHi Mohammad
In this challenge, the tricky part can be the return: you have to specify the return type in the function and return the result of the math operation:
func getRemainder(value a: Int, divisor b: Int) -> Int { // The return type is specified here: -> Int
let result = a % b //The constant is simply used to assign the result of the math operation to it and then return it below.
return result
}
getRemainder(value:10,divisor:3) //Here, notice you need to use the external parameter names when calling the function.
I hope that helps! :-)
(Remember to mark the answer that helped you as 'best answer', in order to keep the community effecient. Thank you).