mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
23 lines
547 B
Kotlin
Vendored
23 lines
547 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
// WITH_RUNTIME
|
|
|
|
val String.name get() = this
|
|
|
|
fun List<String>.normalize(): List<String> {
|
|
val list = ArrayList<String>()
|
|
for (str in this) {
|
|
when (str.name) {
|
|
"." -> {}
|
|
".." -> if (!list.isEmpty() && list.last().name != "..") list.removeAt(list.size - 1) else list.add(str)
|
|
else -> list.add(str)
|
|
}
|
|
}
|
|
return list
|
|
}
|
|
|
|
fun box(): String {
|
|
val xs = listOf("a", "b", ".", "..").normalize()
|
|
if (xs != listOf("a")) return "Fail: $xs"
|
|
|
|
return "OK"
|
|
} |