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 Swift Closures Closures and Closure Expressions Using Filter

Will Matthews
Will Matthews
8,127 Points

Why 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?

filter.swift
let numbers = [Int](0...50)

// Enter your code below
func isOdd(i: Int) -> Bool {
  return i % 2 == 0
}

2 Answers

Jhoan Arango
Jhoan Arango
14,575 Points

That’s because the calculation you are doing makes it even.. not odd.

Try return i % 2 == 1

Will Matthews
Will Matthews
8,127 Points

Uhhhh 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
Jhoan Arango
14,575 Points

lol it happens.. you got it tho.