1
0
Fork 0

Solve day 1

This commit is contained in:
Lars Martens 2023-12-01 11:50:28 +01:00
commit 646925298c
Signed by: haselkern
GPG key ID: B5CF1F363C179AD4
9 changed files with 316 additions and 0 deletions

11
Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[package]
name = "aoc2023"
version = "0.0.0"
edition = "2021"
[dependencies]
anyhow = "1.0.75"
itertools = "0.12.0"
regex = "1.10.2"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"