public class Homework1A
{
   /**
      Swaps the smallest and largest value.
      @param values an array of values of a class that implements the
      Comparable interface.
   */
   public static void swapMinAndMax(Comparable[] values)
   {
   }
}
