aboutsummaryrefslogtreecommitdiff
path: root/2022/06/solve.js
diff options
context:
space:
mode:
authorMarvin Borner2022-12-06 06:13:04 +0100
committerMarvin Borner2022-12-06 06:13:04 +0100
commita59f60048ccf3f29aeccc8deff016acf8fdd300c (patch)
tree5493d41bc7109472c43d0a49427a7075a4f9f711 /2022/06/solve.js
parenta36c6fe4b3fe93c936d40dcca41f5e8cbf4987d7 (diff)
lol
Diffstat (limited to '2022/06/solve.js')
-rw-r--r--2022/06/solve.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/2022/06/solve.js b/2022/06/solve.js
new file mode 100644
index 0000000..fb5105a
--- /dev/null
+++ b/2022/06/solve.js
@@ -0,0 +1,19 @@
+data = require("fs").readFileSync("input", "utf8").split("\n");
+
+function part1()
+{
+ res = 0
+ return res
+}
+
+function part2()
+{
+ res = 0
+ return res
+}
+
+const tic = performance.now();
+console.log(part1());
+console.log(part2());
+const toc = performance.now();
+console.log("TIME: " + ((toc - tic) / 1000).toFixed(6) + " seconds");