Help for this page

Select Code to Download


  1. or download this
    if (exists $tried{$guess})
      {
         print "\tSkipping $guess - already attempted\n\n";
      }
    
  2. or download this
      my @temp_chars;
      for (1 .. $length)
      {
         push @temp_chars, (shuffle(@chars))[0];
      }
    
  3. or download this
      my $guess = "@temp_chars";