restructuring #1

Merged
Mathis merged 6 commits from restructuring into main 2023-12-18 21:49:46 +00:00
16 changed files with 21 additions and 0 deletions
Showing only changes of commit a3752c5cee - Show all commits

6
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"rust-analyzer.linkedProjects": [
"./Cargo.toml",
"./Cargo.toml"
]
}

View File

@ -1,3 +1,5 @@
pub mod year_2023;
fn main() { fn main() {
println!("Hello, world!"); println!("Hello, world!");
} }

View File

@ -0,0 +1,2 @@
pub mod part_one;
pub mod part_two;

View File

@ -0,0 +1,2 @@
pub mod part_one;
pub mod part_two;

View File

@ -0,0 +1 @@
pub mod part_one;

View File

@ -0,0 +1 @@
pub mod part_one;

View File

@ -0,0 +1,2 @@
pub mod part_one;
pub mod part_two;

5
src/year_2023/mod.rs Normal file
View File

@ -0,0 +1,5 @@
pub mod day_01_trebuchet;
pub mod day_02_cube_conundrum;
pub mod day_03_gear_ratios;
pub mod day_04_scratchcards;
pub mod day_06_wait_for_it;