Well, to solve today's task the rules should be re...
# advent-of-code
r
Well, to solve today's task the rules should be read VERY carefully. I've spent a lot of time due to missing an important point 😞 My solution for Day9 with final Intcode computer: https://github.com/Rtchaik/AoC2019/blob/master/src/advent2019/day09/solution09.kt
k
What part did you miss? I missed the part that said
It will perform a series of checks on each opcode, output any opcodes (and the associated parameter modes) that seem to be functioning incorrectly, and finally output a BOOST keycode.
b
I missed something in the description of the last instruction. Took me ages to find 😉
r
@Kroppeb I missed "Like position mode, parameters in relative mode can be read from or written to." so WRITE indices were not updated while in mode 2.