From ff064b6f13019b15346ff320a486d70b95d80b2a Mon Sep 17 00:00:00 2001 From: Guillermo Ramos Date: Fri, 6 Dec 2024 15:59:32 +0100 Subject: Each day is now a binary --- 2024_rust/src/bin/dayN.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 2024_rust/src/bin/dayN.rs (limited to '2024_rust/src/bin/dayN.rs') 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); +} -- cgit v1.2.3