mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-22 08:33:48 +01:00
1 line
64 B
Kotlin
1 line
64 B
Kotlin
fun maps(x: IntArray): IntArray = x.map { 2 * it }.toIntArray()
|