10 lines
197 B
Kotlin
Vendored
10 lines
197 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
fun foo(list: List<String>): Char? {
|
|
<caret>for (s in list) {
|
|
for (c in s) {
|
|
if (c != ' ') return c
|
|
}
|
|
}
|
|
return null
|
|
} |