aboutsummaryrefslogtreecommitdiff
path: root/src/2019/day13
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-01-19 14:21:45 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-01-19 14:21:45 +0800
commitd1458a3027532d0f19a6ce615a6140134abbeb44 (patch)
tree657442ac93f0e739875fa6d862d303b220af3ce0 /src/2019/day13
parenta5ab1e0bdbb8ccc53199c3783100e971e23a2c7a (diff)
downloadadvent-of-code-d1458a3027532d0f19a6ce615a6140134abbeb44.tar.gz
advent-of-code-d1458a3027532d0f19a6ce615a6140134abbeb44.zip
setup for 2016 2017 2018 2019 2020 2021
Diffstat (limited to 'src/2019/day13')
-rw-r--r--src/2019/day13/README.md0
-rw-r--r--src/2019/day13/aoc.cpp6
-rw-r--r--src/2019/day13/aoc.h7
-rw-r--r--src/2019/day13/input0
-rw-r--r--src/2019/day13/input00
5 files changed, 13 insertions, 0 deletions
diff --git a/src/2019/day13/README.md b/src/2019/day13/README.md
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/2019/day13/README.md
diff --git a/src/2019/day13/aoc.cpp b/src/2019/day13/aoc.cpp
new file mode 100644
index 0000000..52f4bb0
--- /dev/null
+++ b/src/2019/day13/aoc.cpp
@@ -0,0 +1,6 @@
+#include "aoc.h"
+
+namespace aoc2019 {
+
+std::pair<int64_t, int64_t> day13(line_view) { return {0, 0}; }
+} // namespace aoc2019
diff --git a/src/2019/day13/aoc.h b/src/2019/day13/aoc.h
new file mode 100644
index 0000000..21e85cc
--- /dev/null
+++ b/src/2019/day13/aoc.h
@@ -0,0 +1,7 @@
+#pragma once
+#include "common.h"
+#include <vector>
+
+namespace aoc2019 {
+std::pair<int64_t, int64_t> day13(line_view);
+}
diff --git a/src/2019/day13/input b/src/2019/day13/input
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/2019/day13/input
diff --git a/src/2019/day13/input0 b/src/2019/day13/input0
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/2019/day13/input0