summaryrefslogtreecommitdiff
path: root/2024_rust/src/main.rs
diff options
context:
space:
mode:
authorGuillermo Ramos2024-12-06 15:59:32 +0100
committerGuillermo Ramos2024-12-06 16:29:18 +0100
commitff064b6f13019b15346ff320a486d70b95d80b2a (patch)
tree396868cbbd9be95f6ce0a808f8436d4a1a0f1d89 /2024_rust/src/main.rs
parenta6029017bb354381c17afaf00526442966648c3f (diff)
downloadAoC-ff064b6f13019b15346ff320a486d70b95d80b2a.tar.gz
Each day is now a binary
Diffstat (limited to '2024_rust/src/main.rs')
-rw-r--r--2024_rust/src/main.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/2024_rust/src/main.rs b/2024_rust/src/main.rs
deleted file mode 100644
index 4c5e7fd..0000000
--- a/2024_rust/src/main.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-mod day5;
-use day5 as current_day;
-const INPUT_FILE: &str = "inputs/5";
-
-fn main() {
- let input = std::fs::read_to_string(INPUT_FILE).unwrap();
-
- println!("Result (P1): {}", current_day::p1(&input));
- println!("Result (P2): {}", current_day::p2(&input));
-}