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]
*/