Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,820 answers

573 users

How to remove all the occurrences of an item from a list in Kotlin

1 Answer

0 votes
fun removeAllOccurrences(list: List<Int>, item: Int): List<Int> {
    return list.filter { it != item }
}

fun main() {
    var list = listOf(1, 2, 2, 3, 4, 2, 6, 7, 3, 5, 2, 6, 2, 2)
    
    val itemToRemove = 2
    
    list = removeAllOccurrences(list, itemToRemove)
    
    println(list)
}
 

 
/*
run:

[1, 3, 4, 6, 7, 3, 5, 6]
 
*/

 



answered Dec 26, 2024 by avibootz
...