Hapus duplikat dari daftar di Kotlin

val a = arrayOf("a", "a", "b", "c", "c")
val b = a.distinct() // ["a", "b", "c"]
Nice Nightingale