folks... quick question on (perhaps my understandi...
# announcements
m
folks... quick question on (perhaps my understanding of)
reduce
. What would you expect this to print?
Copy code
val fruitBasket = listOf("banana", "cherry", "orange", "apple", "banana", "cherry", "orange", "apple", "fig", "cherry")

fruitBasket.reduce { acc, s ->
    println(s)
    acc
}