2021 Day 3 done in Rust

I'm not especially proud of the code : it's messy, took a long time
and could probably be vastly improved.
I could have used the intersperse iterator method but it's currently in
nightly only. Maybe another way of parsing the string would have prevented
the need ?
This commit is contained in:
trotFunky 2021-12-04 20:47:15 +00:00
parent 31f3680949
commit 394a8bfc3c
4 changed files with 1100 additions and 0 deletions

View file

@ -0,0 +1,9 @@
[package]
name = "rust_solution"
version = "0.1.0"
authors = ["Teo-CD <teo.couprie_diaz@telecom-sudparis.eu>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]