/* StickySort.java CIS 160 David Klick 2015-10-17 Modified by: This program tests a sorting algorithm. */ public class StickySort { public static void main(String[] args) { // Get a random number generator set up // Note: By using full package name, we do not need an import statement. java.util.Random rnd = new java.util.Random(); // Create an array of integers (initially all -1) int[] nums = new int[20]; java.util.Arrays.fill(nums, -1); // Fill the array with non-duplicated integers from 0 - 99 int pos = 0; while (pos