Where I store my workings and inputs for the Advent of Code
Find a file
Teo-CD 9c2774be19 2020 day 8 : alternative Python solution
Solved with threads, slower by 20-30% for this workload apparently.
Might be because it is the same solution, juste using a new thread for each test
instead of one thread. Early exit does not seem to improve things, as the threads
complete very quickly.
2020-12-21 00:46:50 +01:00
2020 2020 day 8 : alternative Python solution 2020-12-21 00:46:50 +01:00
.gitignore Some cleanup, added a few comments all around 2020-12-05 00:04:09 +01:00
README.md Some cleanup, added a few comments all around 2020-12-05 00:04:09 +01:00

Advent of Code - trotFunky's pot O' code

This is the repository where I'll be storing my solutions for the Advent of Code event run by Eric Wastl.
The directory structure is simple : year/day, each day containing the input file and at least one file containing my solution(s). The prompts of each puzzles will not be repeated here, so go check them on the site !

Depencies

Only Python3 for now !