This question with an added constraint.
I\'m willing to allow not-uniform selection as long as it\'s not to lop sided.
Given that \"sets are typically imple
Introduce array with size equal to set. Make array elements hold addresses of every element in set. Generate random integer R bounded by array/set size, pick address in array's element indexed by R and dereference it to obtain set's element.
R