This JavaScript, based on Unique Random Numbers II, picks Unique Random Sets.
Here, there are more than one arrays (need not be of same length). First, we pick a number of unique random elements from the first array, numArr1 to form the array pickArr1. Now each element of pickArr1 picks another element from the second array numArr2, which again is unique and random. Thus we form the array pickArr2. Similarly each element of pickArr2 picks unique random elements from numArr3 to form pickArr3.
i.e if the first element of pickArr1 picks the second element of numArr2, then no other element of pickArr1 should pick the second element of numArr2 again.
In effect what we are doing is picking equal number of unique random numbers from a number of arrays(In this exaple, 3 arrays) to form a number of unique random sets, containing number of elements same as the number of arrays.
Here's an example :
Reload the page to see a set of another unique random sets. (The page may take time to load)
© 2002 Premshree Pillai.
|