My map:
std::map<std::array<byte, 16>, int> possible; // key is a byte array, value is a frequency of occurrence
I already filled the map. Now I need to remove the arrays that occurred once. It is necessary to remove from the map such pairs, the value of which is equal to one. How to do it?