aboutsummaryrefslogtreecommitdiff
path: root/2020/09
diff options
context:
space:
mode:
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");