public class Driver {
  public static void main(String[] args) {
    Sort.quicksort( new Integer[] {5,3,3,2,1,3,2,1,4,7,2});
  }
}