What's the difference between a set and a map? (As described below on cppreference)
Set:
The C++ Set is an associative container that contains a sorted set of unique objects.
Map:
C++ Maps are sorted associative containers that contain unique key/value pairs.
I'm having trouble finding the distinction.