How to print the distinct elements of a list in Kotlin

1 Answer

0 votes
fun main() {
    val list = listOf(3, 5, 9, 1, 7, 8, 1, 9, 0, 3, 9)

    val uniqueElements = list.filter { item ->
        list.indexOf(item) == list.lastIndexOf(item)
    }

    println(uniqueElements)
}


 
  
/*
run:
  
[5, 7, 8, 0]

*/

 



answered Jul 13, 2025 by avibootz
...