2019: Day 5 Part 1
This commit is contained in:
parent
02849a6af9
commit
608b4078c4
3 changed files with 84 additions and 10 deletions
7
2019/day5/part1.rb
Normal file
7
2019/day5/part1.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
|
||||
Loading…
Reference in a new issue