Question: Recode the Quick Sort class implementation by adding two efficiency improvements to the method sort:
(1) Eliminate the calls to join, because it accomplishes nothing.
(2) Add code for the special case of an array of exactly two elements and make the general case apply to arrays of three or more elements.