diff options
author | Marvin Borner | 2020-12-13 12:35:33 +0100 |
---|---|---|
committer | Marvin Borner | 2020-12-13 12:35:33 +0100 |
commit | fc4981e3ea863632c88e5f0b308ae4532d077e49 (patch) | |
tree | 811a1d2c09cd811764fb8c3c09099a876beb0e7f /2020/09 | |
parent | f476fb5eaf30254dcb9e480f27f52b207147e207 (diff) |
Added execution timers
Diffstat (limited to '2020/09')
-rw-r--r-- | 2020/09/solve.js | 4 |
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"); |