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 trialWill Matthews
8,127 PointsWhy doesn't my isOdd function pass the test?
Running into a problem with these challenges again. I don't understand what's wrong with this code. It works fine again in Xcode. Ideas?
let numbers = [Int](0...50)
// Enter your code below
func isOdd(i: Int) -> Bool {
return i % 2 == 0
}
2 Answers
Jhoan Arango
14,575 PointsThatβs because the calculation you are doing makes it even.. not odd.
Try return i % 2 == 1
Will Matthews
8,127 PointsUhhhh yup, solid point you make there. head smack So can I accept my award for dumbest question now, or do I need to mail something in. :/ Thanks!
Mental note: no more coding while on the sauce.
Jhoan Arango
14,575 Pointslol it happens.. you got it tho.