8 lines
150 B
Kotlin
8 lines
150 B
Kotlin
fun box() : String {
|
|
for (i in "".indices) {
|
|
""[i]
|
|
}
|
|
return "OK"
|
|
}
|
|
|
|
val String?.indices : IntRange get() = IntRange(0, this.sure().length) |