41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
7 lines
124 B
Kotlin
7 lines
124 B
Kotlin
fun box(): String {
|
|
for (x in DoubleArray(5)) {
|
|
if (x != 0.toDouble()) return "Fail $x"
|
|
}
|
|
return "OK"
|
|
}
|