AoC - Day 7

:date: 2023-12-07 12:00

Part One

This one involved cards and I am bad at cards. Very, very bad. This had to be all Python just to keep track of what they were wanting. It was basically a dumb program that just organized what beat what. I had some trouble because I made the mistake of not ordering the hand types properly (e.g. three of a kind does beat two pair). Did I mention I was bad at cards? Not only did I do this for two pair and full house, but the test set actually worked fine with this mistake! Finally hunted it down though.

Part Two

Similar to part one with some different accounting. Not a problem. Done by 0900, so not a bad day.