Help for this page

Select Code to Download


  1. or download this
    my $elt;
    $elt = $one[rand @one] until $elt and not grep $elt eq $_, @two;
    
  2. or download this
    my $elt; 
    my %hash; 
    @hash{@two} = (); 
    $elt = $one[rand @one] until $elt and not $hash{$elt};