5 lines
140 B
Kotlin
Vendored
5 lines
140 B
Kotlin
Vendored
fun box(): String {
|
|
val list = arrayOf("a", "c", "b").sorted()
|
|
return if (list.toString() == "[a, b, c]") "OK" else "Fail: $list"
|
|
}
|