McNuggets problem: Difference between revisions

m
→‎{{header|Ruby}}: more concise
m (→‎{{header|Ruby}}: more concise)
Line 856:
nugget_portions = [6, 9, 20]
 
hits = []
arrs = nugget_portions.map{|n| 0.step(limit, n).to_a }
hits = arrs.pop.product(*arrs){|prod| hits << prod.map(&:sum })
p ((0..limit).to_a - hits).max # => 43</lang>
 
1,149

edits