From 372bc43623d357db04e2058eda5f1c4764228ad1 Mon Sep 17 00:00:00 2001 From: David Lenfesty Date: Tue, 30 Nov 2021 23:09:28 -0700 Subject: [PATCH] Added README --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a5d0603 --- /dev/null +++ b/README.md @@ -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.