1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-16 20:56:57 +02:00
CodeWars/7kyu/small_enough_beginner/solution.kt

2 lines
77 B
Kotlin
Raw Permalink Normal View History

fun smallEnough(a : IntArray, limit : Int) : Boolean = a.all { it <= limit }