Lab from yesterday. Thinking like a computer scientist.
The Comparable interface allowed us to use our HolidayAccount
object array in the Array.sort method. We could not have done so
otherwise.
Issues - The interface must be implemented with the exact signature of the interface.
Since HolidayAccount was not "recognized" as being an object,
we had to create another method with the signature and then one
specific to HolidayAccount or cast the "other" object as a
HolidayAccount object.