day 9 prep

This commit is contained in:
Dylan Thies
2023-12-08 23:47:14 -05:00
parent 86d9af647f
commit 78e50d8c82
6 changed files with 77 additions and 0 deletions

9
2023/Cargo.lock generated
View File

@@ -93,6 +93,15 @@ dependencies = [
"num-traits", "num-traits",
] ]
[[package]]
name = "day-8"
version = "2023.0.0"
dependencies = [
"itertools",
"nom",
"rstest",
]
[[package]] [[package]]
name = "derive-getters" name = "derive-getters"
version = "0.3.0" version = "0.3.0"

12
2023/day-9/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "day-9"
version.workspace = true
edition.workspace = true
authors.workspace = true
repository.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nom.workspace = true
itertools.workspace = true

4
2023/day-9/src/lib.rs Normal file
View File

@@ -0,0 +1,4 @@
pub mod part1;
pub use crate::part1::*;
pub mod part2;
pub use crate::part2::*;

12
2023/day-9/src/main.rs Normal file
View File

@@ -0,0 +1,12 @@
#![warn(clippy::all, clippy::pedantic)]
use day_9::part1;
use day_9::part2;
fn main() {
let input = include_str!("./input.txt");
let part1_result = part1(input);
println!("part 1: {part1_result}");
let part2_result = part2(input);
println!("part 2: {part2_result}");
}

20
2023/day-9/src/part1.rs Normal file
View File

@@ -0,0 +1,20 @@
#![warn(clippy::all, clippy::pedantic)]
#[must_use]
pub fn part1 (_input: &str) -> String {
"Not Finished".to_string()
}
#[cfg(test)]
mod test {
use super::*;
const INPUT: &str = "";
#[test]
fn part1_works() {
let result = part1(INPUT);
assert_eq!(result, "Not Finished".to_string());
}
}

20
2023/day-9/src/part2.rs Normal file
View File

@@ -0,0 +1,20 @@
#![warn(clippy::all, clippy::pedantic)]
#[must_use]
pub fn part2 (_input: &str) -> String {
"Not Finished".to_string()
}
#[cfg(test)]
mod test {
use super::*;
const INPUT: &str = "";
#[test]
fn part2_works() {
let result = part2(INPUT);
assert_eq!(result, "Not Finished".to_string());
}
}