in reply to biased random number picking
#my $size = 100; my $first_index = int(rand($size)); my $second_index = (int(rand($size-1)) + 1 + $first_index) % $size; [download]