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 trialZachary Goforth
748 PointsHow do I pass last challenge on optionals?
I was asked to writ another function and I copied the other one. I thought I did all they I was suppose to do, but I received this error...
You need to define a 'fun' named 'isNotDivisible' that takes a 'Int' parameter named 'dividend' and another 'Int' parameter named 'divisor' and returns a 'Bool"
What have I done wrong?
func isDivisible(#dividend: Int, #divisor: Int) -> Bool {
if dividend % divisor == 0 {
return true
} else {
return false
}
}
func isNotDivisible(dividend: Int, divisor: Int) -> Bool {
reurn true
} else {
return false
}
1 Answer
Chris Stromberg
Courses Plus Student 13,389 Pointsfunc isNotDivisible(dividend dividend: Int, divisor divisor: Int) ->Bool {
if dividend % divisor != 0 {
return true
} else {
return false
}
}