``` arrayListOf(1, 2, 3).removeAll { it % 2 == 0 }...
# announcements
v
Copy code
arrayListOf(1, 2, 3).removeAll { it % 2 == 0 }
👍 1