2019: Day 5 Part 2
This commit is contained in:
parent
608b4078c4
commit
1ae1c260f1
2 changed files with 79 additions and 16 deletions
7
2019/day5/part2.rb
Normal file
7
2019/day5/part2.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require_relative 'intcode'
|
||||
|
||||
input = File.join(__dir__, 'input')
|
||||
program = Intcode.read(input)
|
||||
program.run { 5 }
|
||||
Loading…
Reference in a new issue