1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 22:16:57 +02:00
CodeWars/8kyu/beginner_lost_without_a_map/solution.kt

2 lines
64 B
Kotlin
Raw Normal View History

fun maps(x: IntArray): IntArray = x.map { 2 * it }.toIntArray()