0
votes
Most pythonic way of counting matching elements in something iterable
The idea here is to use reduction to avoid repeated iterations. Also, this does not create any extra data structures, if memory is an issue for you. You start with a dictionary with your counters ( …
