advent_of_code_2021

My attempts to work through the 2021 Advent of Code problems.
git clone https://git.eamoncaddigan.net/advent_of_code_2021.git
Log | Files | Refs | README | LICENSE

commit 091a3f52fab534bfc9c416a649eed44f85e46d85
parent 0f7544e030e1df70304dc905e6553af75231da89
Author: Eamon Caddigan <eamon.caddigan@gmail.com>
Date:   Mon,  6 Dec 2021 12:07:04 -0500

More exposition in the README

Diffstat:
MREADME.md | 13+++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -6,8 +6,17 @@ A democratic process determined that [I would be solving these problems in Python](https://twitter.com/EamonCaddigan/status/1462773482903769089), and that [I'd be using a terminal plus a text editor](https://twitter.com/EamonCaddigan/status/1463577514631180294) to do so -(as opposed to, for example, Jupyter notebooks). +(as opposed to, for example, Jupyter notebooks). I've been a `vim` user for a +long time but I'm using this opportunity get practice `tmux` (I'm coming from +`screen`). -I'm putting the whole repo under the GPLv3, but I am happy to make things +Since I'm a data scientist by trade, I'm focusing on getting more comfortable +with `pandas` and `numpy`, so most of my approaches (so far) involve figuring +out how I can solve the problem by munging tabular data. (I haven't started +yet, but I should also start plotting some of the responses so that I can get +used to `seaborn` and `matplotlib`). This means fewer custom data structures, +and more functional-style code. + +I've placed this repository under the GPLv3, but I am happy to make things available under more permissive licenses on an ad hoc basis (in the very unlikely chance that something in here is generally useful).