- or download this
my @chars = ( "A" .. "Z", "a" .. "z". 0 .. 9 qw( ! @ $ % ^ & *) ); - or download this
# attempt at looping
unless ($_ ne @stored) {
$pw = join(@chars[map{rand @chars} (1..17)];
}
- or download this
until ( $_ not in @stored ) - or download this
while ( $_ in @stored ) - or download this
$n_found = grep { $pw eq $_ } @stored; - or download this
while ( grep { $pw eq $_ } @stored ) - or download this
$pw = join(@chars[map{rand @chars} (1..17)];
while ( grep { $pw eq $_ } @stored ) {
$pw = join(@chars[map{rand @chars} (1..17)];
}
- or download this
do {
$pw = join(@chars[map{rand @chars} (1..17)];
}
while ( grep { $pw eq $_ } @stored );