mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
6 lines
126 B
Kotlin
6 lines
126 B
Kotlin
|
fun predictAge(vararg ages: Int): Int = Math.floor(
|
||
|
Math.sqrt(
|
||
|
ages.sumOf { it * it }.toDouble()
|
||
|
).div(2)
|
||
|
).toInt()
|