Watch
1
0
Fork
You've already forked advent-of-code
0

Remove dead code

This commit is contained in:
Jeremy Kaplan 2019-12-06 10:45:55 -08:00
commit 55713b0a37

View file

@ -173,8 +173,6 @@ module Intcode
gets.to_i gets.to_i
end end
def default_input; end
def operation(cell) def operation(cell)
(cell % 100) (cell % 100)
end end
@ -201,9 +199,5 @@ module Intcode
def read(addr, mode) def read(addr, mode)
param(@mem[addr], mode) param(@mem[addr], mode)
end end
# Operators
def add; end
end end
end end