Skip to content

Commit a8d4095

Browse files
committed
Removes timing code
1 parent b72ec69 commit a8d4095

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

2019/19/tractor-beam.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ class TractorBeam {
55
constructor(memory, options = {}) {
66
this.memory = memory.slice(0);
77
this.grid = new InfiniteGrid({ string_map: { 1: '#', 0: '.' } });
8-
9-
this.parseOpTime = 0;
108
}
119

1210
partOne() {
@@ -232,7 +230,6 @@ class TractorBeam {
232230
// The computer halts after every output, so we create a new one each time
233231
let computer = new Computer({ memory: this.memory, inputs: [x, y] });
234232
let [output] = computer.run();
235-
this.parseOpTime += computer.parseOpTime;
236233

237234
return output;
238235
}

0 commit comments

Comments
 (0)