A little push in the right direction :-)

knoppix@Microknoppix:~$ perl -Mstrict -MData::Dumper -we ' > my @arr; > push @{ $arr[ do { my $v = $1 - 1 if m{(\d+)$} } ] }, $_ > for glob q{{red,blue}-{small,medium,large}-{1,2,3,4}}; > print Data::Dumper->Dumpxs( [ \ @arr ], [ qw{ *arr } ] );' @arr = ( [ 'red-small-1', 'red-medium-1', 'red-large-1', 'blue-small-1', 'blue-medium-1', 'blue-large-1' ], [ 'red-small-2', 'red-medium-2', 'red-large-2', 'blue-small-2', 'blue-medium-2', 'blue-large-2' ], [ 'red-small-3', 'red-medium-3', 'red-large-3', 'blue-small-3', 'blue-medium-3', 'blue-large-3' ], [ 'red-small-4', 'red-medium-4', 'red-large-4', 'blue-small-4', 'blue-medium-4', 'blue-large-4' ] ); knoppix@Microknoppix:~$

I hope this is of interest.

Update: Looks like it might be the wrong direction as I've grouped from the wrong end. Oh well :-(

Update 2: Amended to do things the right way around but it's a bit clunkier :-(

knoppix@Microknoppix:~$ perl -Mstrict -MData::Dumper -we ' > my $idx; > my %idxHash = > map { $_ => $idx ++ } > glob q{{red,blue}-{small,medium,large}}; > my @arr; > push @{ $arr[ do { $idxHash{ $1 } if m{^(\w+-\w+)} } ] }, $_ > for glob q{{red,blue}-{small,medium,large}-{1,2,3,4}}; > print Data::Dumper->Dumpxs( [ \ @arr ], [ qw{ *arr } ] );' @arr = ( [ 'red-small-1', 'red-small-2', 'red-small-3', 'red-small-4' ], [ 'red-medium-1', 'red-medium-2', 'red-medium-3', 'red-medium-4' ], [ 'red-large-1', 'red-large-2', 'red-large-3', 'red-large-4' ], [ 'blue-small-1', 'blue-small-2', 'blue-small-3', 'blue-small-4' ], [ 'blue-medium-1', 'blue-medium-2', 'blue-medium-3', 'blue-medium-4' ], [ 'blue-large-1', 'blue-large-2', 'blue-large-3', 'blue-large-4' ] ); knoppix@Microknoppix:~$

Update 3: Getting rid of the hash index look-up.

knoppix@Microknoppix:~$ perl -Mstrict -MData::Dumper -we ' > my @arr; > my $idx = -1; > push @{ $arr [ $_->[ 0 ] ] }, $_->[ 1 ] for > map { $idx ++; map { [ $idx, $_ ] } glob qq{$_-{1,2,3,4}} } > glob q{{red,blue}-{small,medium,large}}; > print Data::Dumper->Dumpxs( [ \ @arr ], [ qw{ *arr } ] );' ...

Cheers,

JohnGG


In reply to Re^2: Combinations / permutations... not even sure what this is called by johngg
in thread Combinations / permutations... not even sure what this is called by tunafish

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.