mplacona
06/26/2018, 9:44 AMreduce
.
What would you expect this to print?
val fruitBasket = listOf("banana", "cherry", "orange", "apple", "banana", "cherry", "orange", "apple", "fig", "cherry")
fruitBasket.reduce { acc, s ->
println(s)
acc
}