Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/