Skip to content

Commit

Permalink
feat: init day 9
Browse files Browse the repository at this point in the history
  • Loading branch information
saiteki-kai committed Mar 1, 2024
1 parent 21c7d71 commit 1666633
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 2022/src/days/day09/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pub mod part1;
pub mod part2;
7 changes: 7 additions & 0 deletions 2022/src/days/day09/part1.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// https://adventofcode.com/2022/9
//
// Day 9: Rope Bridge - Part 1

pub fn solve() {

}
7 changes: 7 additions & 0 deletions 2022/src/days/day09/part2.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// https://adventofcode.com/2022/9
//
// Day 9: Rope Bridge - Part 2

pub fn solve() {

}
1 change: 1 addition & 0 deletions 2022/src/days/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ pub mod day05;
pub mod day06;
pub mod day07;
pub mod day08;
pub mod day09;
4 changes: 4 additions & 0 deletions 2022/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ fn main() {
days::day08::part1::solve();
days::day08::part2::solve()
}
9 => {
days::day09::part1::solve();
days::day09::part2::solve()
}
_ => println!("Please specify a number between 1 and 25."),
}
}

0 comments on commit 1666633

Please sign in to comment.