Count the coins/0-1: Difference between revisions

m
→‎{{header|Raku}}: left one out
(→‎{{header|Raku}}: Add a Raku example)
m (→‎{{header|Raku}}: left one out)
Line 73:
 
=={{header|Raku}}==
This is pretty much duplicating other tasks, in process if not wording. First part is combinations filtered on a certain property. Second part (extra credit) is permutations of those combinations. Even though I am adding a solution, my vote would be for deletion as it doesn't really add anything to the other tasks.; [[Combinations]], [[Permutations]], [[Subset sum problem]] and to a large extent [[4-rings or 4-squares puzzle]].
 
<lang perl6>sub which (*@items, :$sum-to) { ^@items .combinations.grep: { @items[$_].sum == $sum-to } }
10,327

edits