mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
1 line
77 B
Kotlin
1 line
77 B
Kotlin
fun smallEnough(a : IntArray, limit : Int) : Boolean = a.all { it <= limit }
|