diff options
author | cos <cos> | 2019-12-03 19:39:13 +0100 |
---|---|---|
committer | cos <cos> | 2019-12-03 19:39:13 +0100 |
commit | 80bfbefdb77a5153561ae4c1cb61d6d4e2b662c6 (patch) | |
tree | 35d15b84f64d0a1dfeea7892a0b1ab8e102d27e1 /2019/rust/Cargo.toml | |
parent | 3a361dd8d7f3a41f2f73513b398c746badca934b (diff) | |
download | adventofcode-80bfbefdb77a5153561ae4c1cb61d6d4e2b662c6.zip |
Add day03, 2019
Implemented with the wire map as a newtype based on BTreeMap.
Not necessarily the best choice, but it was fun to write.
Diffstat (limited to '2019/rust/Cargo.toml')
-rw-r--r-- | 2019/rust/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/2019/rust/Cargo.toml b/2019/rust/Cargo.toml index d52cdc3..b5a41d5 100644 --- a/2019/rust/Cargo.toml +++ b/2019/rust/Cargo.toml @@ -2,4 +2,5 @@ members = [ "day01", "day02", + "day03", ] |