Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

2024 Advent of Code

Changing go for python this year :D https://adventofcode.com/2024

year learnings

  • samples and intermediate tests are ok for troubleshooting or TDD practicing, but unless you need them, go straight for final result number. you will get it right many times and don't lose unnecessary time.
  • something i did differently from previous years
    • on map/2D quizzes, evaluate if you need the actual matrix, or it's ok to just have the key info for getting the result. ex.: on day6, having a map with the .,#,X with point tuples is enough
  • for map/2D quizzes, better start with 1, makes debugging/understandment easier

howto

  • using chatgpt is ok, as long as prompts are for python helpers, not algorithms or general resolutions
  • respect aoc rules on public repos; delete/encrypt inputs + don't put input solutions
  • left my resolution times and comments for fun. may contain spoilers