Files
2022-01-05 13:12:32 +01:00

7 lines
156 B
Kotlin
Vendored

// WITH_STDLIB
fun box(): String {
val list = arrayOf("a", "c", "b").sorted()
return if (list.toString() == "[a, b, c]") "OK" else "Fail: $list"
}