aboutsummaryrefslogtreecommitdiff
path: root/2020/09
diff options
context:
space:
mode:
authorMarvin Borner2020-12-13 12:35:33 +0100
committerMarvin Borner2020-12-13 12:35:33 +0100
commitfc4981e3ea863632c88e5f0b308ae4532d077e49 (patch)
tree811a1d2c09cd811764fb8c3c09099a876beb0e7f /2020/09
parentf476fb5eaf30254dcb9e480f27f52b207147e207 (diff)
Added execution timers
Diffstat (limited to '2020/09')
-rw-r--r--2020/09/solve.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/2020/09/solve.js b/2020/09/solve.js
index 394bd4b..f1289c7 100644
--- a/2020/09/solve.js
+++ b/2020/09/solve.js
@@ -1,3 +1,4 @@
+const { _, performance } = require("perf_hooks");
const fs = require("fs");
const data = fs
.readFileSync("input", "utf8")
@@ -40,6 +41,9 @@ function partTwo(num) {
}
}
+const tic = performance.now();
const num = partOne();
console.log(num);
console.log(partTwo(num));
+const toc = performance.now();
+console.log("TIME: " + ((toc - tic) / 1000).toFixed(6) + " seconds");