fun box(): String { val sorted = arrayListOf("1", "3", "2").sort() return if (sorted != arrayListOf("1", "2", "3")) "$sorted" else "OK" }