Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danhalligan/aoc2024
🎄 Advent of Code 2024 solutions in python3
https://github.com/danhalligan/aoc2024
advent-of-code advent-of-code-2024 advent-of-code-2024-python python3
Last synced: 23 days ago
JSON representation
🎄 Advent of Code 2024 solutions in python3
- Host: GitHub
- URL: https://github.com/danhalligan/aoc2024
- Owner: danhalligan
- License: mit
- Created: 2024-12-01T15:59:00.000Z (27 days ago)
- Default Branch: main
- Last Pushed: 2024-12-01T16:02:49.000Z (27 days ago)
- Last Synced: 2024-12-01T17:23:37.561Z (27 days ago)
- Topics: advent-of-code, advent-of-code-2024, advent-of-code-2024-python, python3
- Language: Python
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AoC2024
![CI workflow](https://github.com/danhalligan/AoC2024/actions/workflows/ci.yaml/badge.svg)
![License](https://img.shields.io/github/license/danhalligan/AoC2024)
![Code style](https://img.shields.io/badge/code%20style-black-000000.svg)`AoC2024` is a python package implementing solutions python solutions for the
[Advent of Code 2024] problems.## Example
First you need to [setup your session ID] as this package uses
[`advent-of-code-data`] to retrieve the data input.To solve all days (where available) run:
``` bash
poetry run aoc2024
```Or to solve specific day(s) (e.g. days 1 and 5):
``` bash
poetry run aoc2024 1 5
```[Advent of Code 2024]: https://adventofcode.com/2024
[setup your session ID]: https://github.com/wimglenn/advent-of-code-data/tree/main#quickstart
[`advent-of-code-data`]: https://github.com/wimglenn/advent-of-code-data/