Help for this page

Select Code to Download


  1. or download this
    use Math::Combinatorics qw( permute );
    
    ...
       $s =~ s/$others//g;
       return $valid{$s};
    }
    
  2. or download this
    use Math::Combinatorics qw( permute );
    
    ...
       $s =~ s/$others//g;
       return $s =~ $valid;
    }
    
  3. or download this
    use Math::Combinatorics qw( permute );
    use Regexp::List qw( );
    ...
       $s =~ s/$others//g;
       return $s =~ $valid;
    }