Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
15
Task/McNuggets-problem/Ruby/mcnuggets-problem-1.rb
Normal file
15
Task/McNuggets-problem/Ruby/mcnuggets-problem-1.rb
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
def mcnugget(limit)
|
||||
sv = (0..limit).to_a
|
||||
|
||||
(0..limit).step(6) do |s|
|
||||
(0..limit).step(9) do |n|
|
||||
(0..limit).step(20) do |t|
|
||||
sv.delete(s + n + t)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
sv.max
|
||||
end
|
||||
|
||||
puts(mcnugget 100)
|
||||
6
Task/McNuggets-problem/Ruby/mcnuggets-problem-2.rb
Normal file
6
Task/McNuggets-problem/Ruby/mcnuggets-problem-2.rb
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue