RosettaCodeData/Task/McNuggets-problem/Ruby/mcnuggets-problem-2.rb
2023-07-01 13:44:08 -04:00

6 lines
178 B
Ruby

limit = 100
nugget_portions = [6, 9, 20]
arrs = nugget_portions.map{|n| 0.step(limit, n).to_a }
hits = arrs.pop.product(*arrs).map(&:sum)
p ((0..limit).to_a - hits).max # => 43