-
Notifications
You must be signed in to change notification settings - Fork 0
Home
github-actions[bot] edited this page Dec 4, 2023
·
5 revisions
A set of C# source generators to build an agent for your Advent of Code solutions — an application that downloads inputs and submits answers.
- Identifies days that have not been solved yet.
- Checks if a day's solution meets the specified examples.
- Downloads input, performs calculations, and submits the answers.
- Informs you when your answer was rejected.
- If the previous answer was given too recently, waits the necessary duration and resubmits.
- Generates NUnit tests for the implemented solutions.
- Caches everything so that does not hurt AoC servers much and you don't get penalties for submitting the same incorrect answers.
- Does not parse the input for you.
- Does not include specialized algorithms (e.g., BFS, LCM, OCR) that are typical for AoC.