What will the following program print out:
val numbers = mutableListOf(1, 2, 3, 4, 1, 5, 1)
numbers.add(1)
numbers.remove(1)
println(numbers)What will the following program print out:
val numbers = mutableListOf(1, 2, 3, 4, 1, 5, 1)
numbers.add(1)
numbers.remove(1)
println(numbers)Create a free account to access the full topic