diff --git a/2019/day5/intcode.rb b/2019/day5/intcode.rb index 9f7ff73..80a8c49 100644 --- a/2019/day5/intcode.rb +++ b/2019/day5/intcode.rb @@ -173,8 +173,6 @@ module Intcode gets.to_i end - def default_input; end - def operation(cell) (cell % 100) end @@ -201,9 +199,5 @@ module Intcode def read(addr, mode) param(@mem[addr], mode) end - - # Operators - - def add; end end end