Szymon Zaborowski
Results
1
comments of
Szymon Zaborowski
For the fold approach you can think of something like that: ```rust fn count_collection_iterator(collection: &[HashMap], value: Progress) -> usize { collection.iter().fold(0, |acc, x| acc + count_iterator(x, value)) } ```