Kotlin / kotlin-koans

Kotlin workshop
MIT License
2.6k stars 1.41k forks source link

[online] Kotlin Koans 5/42 contains incorrect assertion #166

Open Gatoke opened 6 years ago

Gatoke commented 6 years ago

In online Kotlin Koans https://try.kotlinlang.org at task 5/42 'Lambdas' when I type:

fun containsEven(collection: Collection<Int>): Boolean = collection.any { i -> i/2 == 0 }

I pass the test but I shouldn't. Note that there is i/2 instead of i%2.

image

DoD The lambda i -> i/2 == 0 should not be accepted in this task.