11 lines
207 B
Kotlin
Vendored
11 lines
207 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
fun foo(list: List<String>): Long {
|
|
var count = 0L
|
|
<caret>for (s in list) {
|
|
if (s.length > 10) {
|
|
count++
|
|
}
|
|
}
|
|
return count
|
|
} |