68844131b0
Out of three methods, two were incorrect
9 lines
130 B
Kotlin
9 lines
130 B
Kotlin
class A {
|
|
class object {
|
|
fun values() = "O"
|
|
fun valueOf() = "K"
|
|
}
|
|
}
|
|
|
|
fun box() = A.values() + A.valueOf()
|