Create a public class named Min
with a single class method named min
.
min
should accept an array of Objects that implement Comparable
and return the minimum.
If the array is null
or empty, you should return null
.
As a reminder, compareTo
returns a negative integer, zero, or a positive integer as this object is less than,
equal to, or greater than the specified object.
You're challenge is to write tests for this problem described above.
Stuck? You may find these lessons helpful: