- or download this
sub tye2 {
my( $sentence, $wantedLetters )= @_;
...
}
return 1;
}
- or download this
sub tye1 {
my( $sentence, $wantedLetters )= @_;
...
while( $wantedLetters =~ /(.)/gs );
return 1;
}
- or download this
sub tye0 {
-1 == index( $_[0], $1 ) && return 0
while( $_[1] =~ /(.)/gs );
return 1;
}