Unique Counter
Let's get more practice with maps!
Create a class called UniqueCounter
.
You should provide two methods:
add
, which takes anObject
and does not return a valueget
, which takes anObject
and 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.