We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b72ec69 commit a8d4095Copy full SHA for a8d4095
2019/19/tractor-beam.js
@@ -5,8 +5,6 @@ class TractorBeam {
5
constructor(memory, options = {}) {
6
this.memory = memory.slice(0);
7
this.grid = new InfiniteGrid({ string_map: { 1: '#', 0: '.' } });
8
-
9
- this.parseOpTime = 0;
10
}
11
12
partOne() {
@@ -232,7 +230,6 @@ class TractorBeam {
232
230
// The computer halts after every output, so we create a new one each time
233
231
let computer = new Computer({ memory: this.memory, inputs: [x, y] });
234
let [output] = computer.run();
235
- this.parseOpTime += computer.parseOpTime;
236
237
return output;
238
0 commit comments