todd_wanna_code
fun containsEven(collection: Collection<Int>): Boolean = collection.any { !(it % 2) }