From 55713b0a374c3ace239f4b8d8c701f08d358c314 Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Fri, 6 Dec 2019 10:45:55 -0800 Subject: [PATCH] Remove dead code --- 2019/day5/intcode.rb | 6 ------ 1 file changed, 6 deletions(-) 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