mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
2 lines
126 B
Kotlin
2 lines
126 B
Kotlin
fun people(busStops: Array<Pair<Int, Int>>) : Int =
|
|
busStops.fold(0) { inBus, (gotOn, gotOff) -> inBus + gotOn - gotOff }
|