From 98bfa012b743469d8a2541fcdd0b4c5f2c7f79aa Mon Sep 17 00:00:00 2001 From: Firewire Date: Sun, 1 Dec 2024 22:18:46 -0500 Subject: [PATCH] Setup day 2 projects --- .idea/adventofcode.iml | 4 ++++ Days/One/OnePart2/{Input => input} | 0 Days/Two/TwoPart1/Cargo.lock | 7 +++++++ Days/Two/TwoPart1/Cargo.toml | 6 ++++++ Days/Two/TwoPart1/src/main.rs | 3 +++ Days/Two/TwoPart2/Cargo.lock | 7 +++++++ Days/Two/TwoPart2/Cargo.toml | 6 ++++++ Days/Two/TwoPart2/src/main.rs | 3 +++ 8 files changed, 36 insertions(+) rename Days/One/OnePart2/{Input => input} (100%) create mode 100644 Days/Two/TwoPart1/Cargo.lock create mode 100644 Days/Two/TwoPart1/Cargo.toml create mode 100644 Days/Two/TwoPart1/src/main.rs create mode 100644 Days/Two/TwoPart2/Cargo.lock create mode 100644 Days/Two/TwoPart2/Cargo.toml create mode 100644 Days/Two/TwoPart2/src/main.rs diff --git a/.idea/adventofcode.iml b/.idea/adventofcode.iml index a6778c7..60cf802 100644 --- a/.idea/adventofcode.iml +++ b/.idea/adventofcode.iml @@ -5,9 +5,13 @@ + + + + diff --git a/Days/One/OnePart2/Input b/Days/One/OnePart2/input similarity index 100% rename from Days/One/OnePart2/Input rename to Days/One/OnePart2/input diff --git a/Days/Two/TwoPart1/Cargo.lock b/Days/Two/TwoPart1/Cargo.lock new file mode 100644 index 0000000..3e00dd1 --- /dev/null +++ b/Days/Two/TwoPart1/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "TwoPart1" +version = "0.1.0" diff --git a/Days/Two/TwoPart1/Cargo.toml b/Days/Two/TwoPart1/Cargo.toml new file mode 100644 index 0000000..69d9c4c --- /dev/null +++ b/Days/Two/TwoPart1/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "TwoPart1" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/Days/Two/TwoPart1/src/main.rs b/Days/Two/TwoPart1/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/Days/Two/TwoPart1/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/Days/Two/TwoPart2/Cargo.lock b/Days/Two/TwoPart2/Cargo.lock new file mode 100644 index 0000000..377ca77 --- /dev/null +++ b/Days/Two/TwoPart2/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "TwoPart2" +version = "0.1.0" diff --git a/Days/Two/TwoPart2/Cargo.toml b/Days/Two/TwoPart2/Cargo.toml new file mode 100644 index 0000000..868bcb4 --- /dev/null +++ b/Days/Two/TwoPart2/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "TwoPart2" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/Days/Two/TwoPart2/src/main.rs b/Days/Two/TwoPart2/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/Days/Two/TwoPart2/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}