My take
#! perl -slw
use strict;
use List::Util qw[ sum ];
sub Cnr{
my( $n, @r ) = shift;
return [] unless $n--;
for my $x ( 0 .. ($#_ - $n) ) {
push @r, map{
[ $_[$x], @$_ ]
} Cnr( $n, @_[ ($x + 1) .. $#_ ] );
}
return @r;
}
sub sums{
my( $required, @values ) = @_;
return grep{
sum( @$_ ) == $required
? $_
: ()
} map{
Cnr( $_, @values )
} 1 .. $#values;
}
print "@$_" for sums( 20, 1 .. 9 );
<STDIN>;
__END__
P:\test>355455
3 8 9
4 7 9
5 6 9
5 7 8
1 2 8 9
1 3 7 9
1 4 6 9
1 4 7 8
1 5 6 8
2 3 6 9
2 3 7 8
2 4 5 9
2 4 6 8
2 5 6 7
3 4 5 8
3 4 6 7
1 2 3 5 9
1 2 3 6 8
1 2 4 5 8
1 2 4 6 7
1 3 4 5 7
2 3 4 5 6
Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"Think for yourself!" - Abigail
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.