diff --git a/source/day8.d b/source/day8.d index 27acde2..14bf947 100644 --- a/source/day8.d +++ b/source/day8.d @@ -61,7 +61,6 @@ int part1(ref Instruction[] instrs) { while(!visited.canFind(pc)) { Instruction curInstr = instrs[pc]; - writeln(pc, curInstr); visited ~= [pc]; switch(curInstr.memomic) { case Memomic.NOP: @@ -105,7 +104,6 @@ int part2(ref Instruction[] instrs) { while(!visited.canFind(pc)) { Instruction curInstr = instrs[pc]; - writeln(pc, curInstr); visited ~= [pc]; switch(curInstr.memomic) { case Memomic.NOP: