Массивы и коллекции / Массивы

val numbers = arrayOf(13213)
val unique = numbers.distinct()
//unique is {1, 3, 2}

unique.forEach { print("$it ") }