6.3.90.900
17 Day 17
The puzzle. Our input is a list of containers that hold the designated number of liters.
17.1 How many combinations of containers fit exactly 150 liters?
This is a lot like the second part of Day 15, where we had to find cookie recipes that totaled 500 calories. This time, rather than recipes, we need to generate combinations of the containers that add up to exactly 150 liters (though we don’t have to use all the containers, and multiple containers of the same size are deemed to create unique arrangements).
We do this by creating the power set of the containers — that is, a list of all possible subsets — and counting how many meet our criterion. As with the recipe problem, our powerset function is a simple recursive operation.
17.2 How many combinations have the minimum number of containers?
Same as above, except we find the minimum length among the winners, and then count how many other winners have that length.
17.3 Testing Day 17