mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
5 lines
114 B
Kotlin
5 lines
114 B
Kotlin
|
fun maxSequence(arr: List<Int>): Int =
|
||
|
arr.scan(0) { k, it ->
|
||
|
maxOf(k, 0) + it
|
||
|
}.maxOrNull() ?: 0
|