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 Functions in Swift Adding Power to Functions Function Parameters

Christopher Roach
Christopher Roach
585 Points

Can 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.

functions.swift
// Enter your code below
func getRemainder(value: Int, divisor: Int) -> Int {
    let getRemainderSum = value % divisor

    return getRemainderSum
}

2 Answers

Magnus Hållberg
Magnus Hållberg
17,232 Points

Hi! 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
Christopher Roach
585 Points

Hi 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

Christopher Roach
Christopher Roach
585 Points

Don't worry, figured it out :)

func getRemainder(value a: Int, divisor b: Int) -> Int { return a % b }