Added README

This commit is contained in:
David Lenfesty 2021-11-30 23:09:28 -07:00
parent e6b3f045f8
commit 372bc43623

12
README.md Normal file
View File

@ -0,0 +1,12 @@
# Advent of Code 2021 Code
These are my attempts to complete Advent of Code 2021. The intent is just to
spend a little bit of time. Hopefully get a little more comfy with Rust.
Although I may drop it eventually if it doesn't really teach me much.
## Progress
### Day 1
Parts 1 and 2 complete! Other people did some nicer iterator solutions with
itertools but it was easy enough to do just inside of a basic for loop.