Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kguzek/advent-of-code-2024
A solution generator and runtime environment for the Advent of Code 2024.
https://github.com/kguzek/advent-of-code-2024
advent-of-code advent-of-code-2024 aoc aoc-2024 aoc-2024-in-python project-management
Last synced: 13 days ago
JSON representation
A solution generator and runtime environment for the Advent of Code 2024.
- Host: GitHub
- URL: https://github.com/kguzek/advent-of-code-2024
- Owner: kguzek
- Created: 2024-12-02T13:20:45.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-20T23:58:20.000Z (18 days ago)
- Last Synced: 2024-12-21T00:28:45.501Z (18 days ago)
- Topics: advent-of-code, advent-of-code-2024, aoc, aoc-2024, aoc-2024-in-python, project-management
- Language: Python
- Homepage: https://adventofcode.com/2024
- Size: 43 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2024
This is a solution generator and runtime environment for the [Advent of Code 2024](https://adventofcode.com/2024/).
## Generating solution template
From the project root, run:
```sh
./generator.sh [DAY]
```For the generator script, you can omit the `DAY` parameter if you wish and provide it interactively when prompted.
## Writing a solution
Enter `src/puzzles/day_{DAY}/` and edit `solution.py` to your needs.
When you're finished with your solution, proceed to the next section.## Running a solution
To execute the solution and test it, run the following from the project root:
```sh
./solver.sh
```
Note that the `DAY` parameter is mandatory here.