41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
12 lines
240 B
Kotlin
12 lines
240 B
Kotlin
import java.util.HashMap
|
|
|
|
fun HashMap<String, Int?>.set(index: String, elem: Int?) {
|
|
this.put(index, elem)
|
|
}
|
|
|
|
fun box(): String {
|
|
val s = HashMap<String, Int?>()
|
|
s["239"] = 239
|
|
return if (s["239"] == 239) "OK" else "Fail"
|
|
}
|