summaryrefslogtreecommitdiff
path: root/2024_rust/src/bin/dayN.rs
diff options
context:
space:
mode:
Diffstat (limited to '2024_rust/src/bin/dayN.rs')
-rw-r--r--2024_rust/src/bin/dayN.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/2024_rust/src/bin/dayN.rs b/2024_rust/src/bin/dayN.rs
new file mode 100644
index 0000000..cdaa061
--- /dev/null
+++ b/2024_rust/src/bin/dayN.rs
@@ -0,0 +1,15 @@
+fn p1(_input: &str) -> String {
+ let result = "TODO";
+
+ result.to_string()
+}
+
+fn p2(_input: &str) -> String {
+ let result = "TODO";
+
+ result.to_string()
+}
+
+fn main() {
+ aoc2024::run_day("N", p1, p2);
+}