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 trial

iOS

What have i done wrong?

Code Challenge Request: (In this task we're going to write a simple function that takes two numbers and returns the remainder of dividing one number by the other.

Step 1: Declare a function named getRemainder that takes two parameters, aand b, both of type Int, and returns the value, also of type Int, obtained by carrying out the operation a modulo b. In case you've forgotten, the modulo operator is also called the remainder operator.

Step 2: The local names of the parameters are convenient but they make it hard to figure out the meaning of the function when we call it. Add two external names - value, for the first parameter and divisor for the second.)

What I've done: func getRemainder(a value: Int,b divisor: Int) -> Int { return value }

Please tell me what I've done wrong : )

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there Benjamin Masel! You have a couple of problems here. First, you've reversed the order of the names of the internal and external names for the function. But also, you never return the remainder. You're just returning the value that was sent in. We want to return the result of the value modulus divisor. We do this with the remainder/modulus operator %. Take a look:

// Enter your code below
 func getRemainder(value a: Int,divisor b: Int) -> Int { 
  return a % b
 }

When we set up our function we write the external name first then the internal name. This function will return the remainder of a divided by b. So if we were to now send in 12 as the value and 7 as the divisor, our code would return 5. Twelve divided by seven results in a one with a remainder of 5. Hope this helps! :sparkles: