Can you please give me an example - let’s say I have a big list of numbers and I need to find how many times each number is there.
I would expect a mutable dictionary/map and a single pass through. How would you do that without mutable datastructure?
So you have memory space which is reused… Which essentially makes it a mutable memory structure, where you update or add with new data keys… No?