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 trialRuslan Temirkhanov
2,528 PointsI don't understand what's wrong with my function?
I think I did everything right. Could someone take a look at it please?
1 Answer
Evan Demaris
64,262 PointsHi Ruslan,
For this Challenge, you can actually just copy and paste the first function and tweak it a little; add a "Not" to the name, and change == 0 to != 0.
func isNotDivisible(#dividend: Int, #divisor: Int) -> Bool {
if dividend % divisor != 0 {
return true
} else {
return false
}
}
Please let me know if you have any questions about why that works!
Ruslan Temirkhanov
2,528 PointsI typed the whole code by myself and it didnt accept it... But then i refreshed the page and just changed the name of the function and the equal sign. The problem is in the system. But thanks for trying to help!
Evan Demaris
64,262 PointsEvan Demaris
64,262 PointsHi Ruslan,
Your code didn't attach; could you please copy and paste it here?