I'm not sure if this is considered a permutation or not.
I'm looking to find every combination of a..z,0..9 X wide.
so 2 wide would start like
a a
a b
a c
and end up like
z y
z z
3 wide would be
a a a
a a b
a a c
etc etc..
All the permutations I have found just go as wide as the available char's.
Right now I have something like this hard coded, but I really want something that can just take a var for how wide it should be.
Thanks in advance as always.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
![[noevil] [noevil] [noevil]](/data/assets/smilies/noevil.gif)
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
I'm looking to find every combination of a..z,0..9 X wide.
so 2 wide would start like
a a
a b
a c
and end up like
z y
z z
3 wide would be
a a a
a a b
a a c
etc etc..
All the permutations I have found just go as wide as the available char's.
Right now I have something like this hard coded, but I really want something that can just take a var for how wide it should be.
Code:
for $fl (a..z,0..9){
for my $sl (a..z,0..9){
for my $kl (a..z,0..9){
print "$fl $sl $kl\n";
}}}
Thanks in advance as always.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
![[noevil] [noevil] [noevil]](/data/assets/smilies/noevil.gif)
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;