You now use maps and sets for efficient lookups.
map stores key-value pairs with lookup
set stores unique values in sorted order
unordered versions offer average lookup
Use maps for counting frequencies and associations
Good job. You can now do fast lookups. Next, you will learn pairs and tuples for grouping values.