From 311b1e8d248aea6731bec354ac5418fc63b2fcae Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Fri, 8 Dec 2023 09:36:57 +0100 Subject: [PATCH] created template for easy setup --- template.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 template.js diff --git a/template.js b/template.js new file mode 100644 index 0000000..3a620a8 --- /dev/null +++ b/template.js @@ -0,0 +1,8 @@ +import { readFileSync } from "fs"; +const t0 = performance.now(); + +const input = readFileSync("input.txt").toString(); +console.log(input); + +const t1 = performance.now(); +console.log(`Runtime: ${t1 - t0}ms`);