Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
for 1..8 -> $len {
|
||||
my $pre = my $post = my $t = '';
|
||||
for ('a'..'z')[^$len].permutations -> @p {
|
||||
$t = @p.join('');
|
||||
$post ~= $t unless index($post, $t);
|
||||
$pre = $t ~ $pre unless index($pre, $t);
|
||||
}
|
||||
printf "%1d: %8d %8d\n", $len, $pre.chars, $post.chars;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue