Programming Exercise: Set Comparisons - Counting

In this exercise, we will develop a technique for comparing the contents of two multi-sets (the mathematical term "set" means roughly "group of items whose order doesn't matter, which cannot have duplicated values." "Multi-set" means "set of items where each value may be duplicated an arbitrary number of times.") Remeber that to use vectors you need to have #include <vector> in your file.

3 points

Extra Credit Options