in reply to Re^5: list of four digit lock combinations without repeated digits
in thread list of four digit lock combinations without repeated digits
map: ~0m0.830stime perl -MAlgorithm::Combinatorics=:all -wle' my $i=variations_with_repetition(["a".."z"],$ARGV[0]); my @x; push @x, map {s/ //} qq[@$_] while $_=$i->next; print scalar @x' 4
pack: ~0m0.820stime perl -MAlgorithm::Combinatorics=:all -wle' my $i=variations_with_repetition(["a".."z"],$ARGV[0]); my @x; push @x, map {$_} qq[@$_] while $_=$i->next; print scalar @x' 4
join: ~0m0.720stime perl -MAlgorithm::Combinatorics=:all -wle' my $i=variations_with_repetition(["a".."z"],$ARGV[0]); my @x; push @x, pack "A*", qq[@$_] while $_=$i->next; print scalar @x' 4
$"=undef: ~0m0.720stime perl -MAlgorithm::Combinatorics=:all -wle' my $i=variations_with_repetition(["a".."z"],$ARGV[0]); my @x; push @x, join "", @$_ while $_=$i->next; print scalar @x' 4
time perl -MAlgorithm::Combinatorics=:all -le' my $i=variations_with_repetition(["a".."z"],$ARGV[0]); my @x; qq[$"=undef]; push @x, qq[@$_] while $_=$i->next; print scalar @x' 4
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: list of four digit lock combinations without repeated digits
by BrowserUk (Patriarch) on Jun 22, 2018 at 06:12 UTC | |
by usemodperl (Beadle) on Jun 22, 2018 at 23:57 UTC |