2023-12-02 00:39:37 +01:00
|
|
|
pub mod input;
|
|
|
|
|
|
|
|
pub mod one;
|
2023-12-02 12:29:28 +01:00
|
|
|
pub mod two;
|
2023-12-04 18:04:05 +01:00
|
|
|
pub mod three;
|
2023-12-02 00:39:37 +01:00
|
|
|
|
|
|
|
use input::AdventError;
|
|
|
|
|
|
|
|
fn main() -> Result<(), AdventError> {
|
2023-12-04 18:04:05 +01:00
|
|
|
one::one()?;
|
|
|
|
one::two()?;
|
|
|
|
two::one()?;
|
|
|
|
two::two()?;
|
|
|
|
three::one()?;
|
|
|
|
Ok(three::two()?)
|
2023-12-02 00:39:37 +01:00
|
|
|
}
|