Unique Counter
Geoffrey Challen // 2020.11.0
Let's get more practice with maps!
Create a class called UniqueCounter.
You should provide two methods:
add, which takes anObjectand does not return a valueget, which takes anObjectand which returns anint.
get should return the number of times that add has been called for that Object on that UniqueCounter
instance.
For example, which your class is done it should work like this:
We suggest that you use a Map internally to track the number of times you have seen a particular Object value.