finished day 07

This commit is contained in:
Kristofers Solo
2023-12-07 17:14:40 +02:00
parent 2da227afa5
commit 2d4d1e91e6
15 changed files with 2501 additions and 93 deletions

View File

@@ -6,4 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
color-eyre = { workspace = true }
color-eyre.workspace = true

View File

@@ -1,6 +1,6 @@
use color_eyre::Result;
pub fn process(input: &str) -> Result<u32> {
pub fn process(input: &str) -> Result<usize> {
todo!("day xx - part 1");
Ok(0)
}

View File

@@ -1,6 +1,6 @@
use color_eyre::Result;
pub fn process(input: &str) -> Result<u32> {
pub fn process(input: &str) -> Result<usize> {
todo!("day xx - part 2");
Ok(0)
}