Watch
1
0
Fork
You've already forked advent-of-code
0
advent-of-code/2019/day5/part2.rb
2021-12-04 21:20:33 -08:00

7 lines
143 B
Ruby

# frozen_string_literal: true
require_relative 'intcode'
input = File.join(__dir__, 'input')
program = Intcode.read(input)
program.run { 5 }