in reply to Re^2: list of four digit lock combinations without repeated digits
in thread list of four digit lock combinations without repeated digits
Am I doing something stupid with the module, or perl?
Try this and see how it compares on your system:
perl -MAlgorithm::Combinatorics=:all -wle'my $i=variations_with_repeti +tion(["a".."z"],$ARGV[0]); my @x; push @x, qq[@$_] while $_=$i->next; + print scalar @x' 4
In general, those algorithms that require more selection than variations_with_repetition() -- almost any of the other algorithms -- is where A;:C shines over a pure perl implementation.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: list of four digit lock combinations without repeated digits
by usemodperl (Beadle) on Jun 21, 2018 at 08:18 UTC | |
by BrowserUk (Patriarch) on Jun 21, 2018 at 10:32 UTC | |
by usemodperl (Beadle) on Jun 22, 2018 at 02:35 UTC | |
by BrowserUk (Patriarch) on Jun 22, 2018 at 06:12 UTC | |
by usemodperl (Beadle) on Jun 22, 2018 at 23:57 UTC |