41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
10 lines
186 B
Kotlin
10 lines
186 B
Kotlin
fun box(): String {
|
|
val x = Array<Int>(5, { it } ).iterator()
|
|
var i = 0
|
|
while (x.hasNext()) {
|
|
if (x.next() != i) return "Fail $i"
|
|
i++
|
|
}
|
|
return "OK"
|
|
}
|