I can't eliminate the need for a temporary hash: having attempted it, I'm inclined to think it's not a nice thing to do, since you always seem to end up needing to collate as a side-effect of iterating over the input...
Anyway, here's what I got:
#!/usr/bin/perl -w
require 5.6.0;
use strict;
use Data::Dumper;
our @input = ({ class => "Chemistry", department => "v6", count => 18
+},
{ class => "German I", department => "v6", count => 27},
{ class => "French II", department => "h4", count => 9 }
+);
our %collate;
foreach (map { [ $_->{department}, $_ ] } @input) {
push(@{$collate{$$_[0]}}, $$_[1]);
}
our @output = map { { department => $_, classes => $collate{$_} } } ke
+ys %colla\
te;
print Data::Dumper->new([\@output], [qw|*output|])->Dumpxs;
(Subquestion: is that constuct I used in the foreach() what's called a Schwartian transform?)
Update:
(Subanswer: It isn't)
Clearly I'm insufficiently awake. %collate can be built like this:
foreach (@input) {
push(@{$collate{$_->{department}}}, $_);
}
The transform is redundant.
Update II
tilly suggested I point out that the code doesn't work on older Perls, even 5.005.
Afaict, the changes for perl 5.005 would be:
- replace "require 5.6.0" to the appropriate version
- either change "our $foo" into "my $foo", or separate the declaration and assignments, and declare them in a "use vars qw($foo)" construct.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.