diff options
author | Julien Dessaux | 2022-12-28 20:03:29 +0100 |
---|---|---|
committer | Julien Dessaux | 2022-12-28 20:04:09 +0100 |
commit | 3430a7074b85b12bb16d9906c04e857448e85f44 (patch) | |
tree | 7c0a2db727eadfef707b4a0715866bb9f40d52a9 /2022/16-proboscidea-volcanium/first.js | |
parent | 2022-18 in js (diff) | |
download | advent-of-code-3430a7074b85b12bb16d9906c04e857448e85f44.tar.gz advent-of-code-3430a7074b85b12bb16d9906c04e857448e85f44.tar.bz2 advent-of-code-3430a7074b85b12bb16d9906c04e857448e85f44.zip |
2022-19 in js
Diffstat (limited to '')
-rw-r--r-- | 2022/16-proboscidea-volcanium/first.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/2022/16-proboscidea-volcanium/first.js b/2022/16-proboscidea-volcanium/first.js index a7274aa..504ad54 100644 --- a/2022/16-proboscidea-volcanium/first.js +++ b/2022/16-proboscidea-volcanium/first.js @@ -18,8 +18,7 @@ fs.readFileSync("input", "utf8") rate: a[2], computePathCostTo: function (target) { Object.values(valves).forEach(v => v.cost = 0); - let nq = new PriorityQueue(); - nq.enqueue(this, 0); + let nq = new PriorityQueue(this); while (true) { let n = nq.dequeue(); if (n.element.label === target) { |