Same Count
Create a class called SameCount
with a single class method count
.
count
accepts an array of Object
values as its first parameter and a single Object
as its second.
It returns the count of the references in the array that refer to the same object as the second argument.
Note that the second argument may be null
and the array may contain null
values.
Assert that the passed array is not null
.