Help for this page

Select Code to Download


  1. or download this
    my %sec;
    my $newsecret;
    ...
      $newsecret .= $char;
      $sec{$char}++;
    }
    
  2. or download this
    $newsecret = join '', map { ??? } split //, $secret;
    
  3. or download this
    my $newsecret = join '', map { my $char=$_; $_='' if exists $sec{$_}; 
    +$sec{$char}++} split //, $secret;
    
  4. or download this
    -----------------------------------
    --the good, the bad and the physi--
    -----------------------------------