KanegaeGabriel / advent-of-code-2019

My solutions to Advent of Code 2019. ⭐

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021

Here lies my solutions to Advent of Code 2019, an Advent calendar full of programming puzzles from December 1st all the way to Christmas.

Following up from last year, in which I only completed the first half of it before the end of the event and got no points whatsoever, I did manage to finish all days but one in the following 24 hours after they were released. Furthermore, there were also a total of 4 top 100 leaderboard finishes: #10/#16 on Day 1 and #22/#5 on Day 17, netting me a total of 351 points and putting me at #196 on this year's overall Global Leaderboard! Yay!

Inputs and Outputs

All inputs are read from inputs\inputXX.txt, with XX being the zero-padded day. As per the creator's request, they are not available in this repository and should be downloaded directly from the event website.

The only outputs for all days are exactly what should be pasted in the puzzle answer textbox, followed by the total runtime of both parts combined (via Python's time.time()), no more and no less. The only exception is when the answer is drawn on a grid-like formation, then that is printed instead of OCR. In some cases, helpful debugging code or other verbose messages are simply commented out, and can be manually toggled to better understand the code inner workings.

Implementation Goals

The solutions posted here are cleaned-up versions of the actual code written when aiming for the leaderboards. For all solutions, the main implementation goals were, in descending order:

  • Readability: Clean, readable, self-explanatory and commented code above all else.
  • Input Generalization: Should work not only for my input but for anyone's, with some assumptions made about it, which are noted when appropriate.
  • Modularity: Avoid duplicate code where possible, allowing for easy modification by making heavy use of classes and functions.
  • Speed: Use efficient algorithms, keeping runtime reasonably low without extreme micro-optimizations.
  • Minimal Imports: Refrain from imports besides utilities (sys, time) and basic standard libraries (math, itertools, collections). When the knowledge of functions and structures are considered vital to the problem solution (graphs, trees, linked lists, union-find, etc.), reimplement them.

And, specifically for this year's Intcode:

  • Black Box Intcode: Treat all Intcode programs as Black Boxes, interacting with them only as described in the puzzle statements. Although it's sometimes possible to solve them faster and with less code by reverse-engineering and modifying or extracting values directly from the Intcode programs, that approach was not considered. Maybe I'll leave that for another time? ;)

Thanks!

Many thanks to Eric Wastl, who creates Advent of Code, as well as to the amazing community over at /r/adventofcode!

About

My solutions to Advent of Code 2019. ⭐

License:MIT License


Languages

Language:Python 100.0%