diff options
-rw-r--r-- | day1/README.md | 13 | ||||
-rw-r--r-- | day3/solve.py | 0 |
2 files changed, 13 insertions, 0 deletions
diff --git a/day1/README.md b/day1/README.md new file mode 100644 index 0000000..0af1495 --- /dev/null +++ b/day1/README.md @@ -0,0 +1,13 @@ +## Day 1 +Day 1 is pretty straight forward. + +### Part One + +Part one is just the sum of all frequencies. Nothing more to say. + +### Part Two +In `found` we keep a list of all frequencies. +we keep our current frequency in `freq` and iterate over the change list +always adding our current frequency to the list and look out for the +current frequency. + diff --git a/day3/solve.py b/day3/solve.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/day3/solve.py |