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

https://github.com/rnag/advent-of-code

Advent of Code solutions (2024) implemented in Python!
https://github.com/rnag/advent-of-code

100-days-of-code 100daysofcode advent-of-code advent-of-code-2024 advent-of-code-2024-python advent-of-code-python

Last synced: 2 months ago
JSON representation

Advent of Code solutions (2024) implemented in Python!

Awesome Lists containing this project

README

          

# Advent of Code (Python)

> Advent of Code Solutions in Python

## Requirements

Requires **Python 3.9+** - Tested on `PY 3.13`.

## Setup

First, clone the Git Repo with HTTPS / SSH, or download
the zip file.

```bash
# HTTPS
$ git clone https://github.com/rnag/Advent-of-Code.git
# SSH
git clone git@github.com:rnag/Advent-of-Code.git
```

Next, `cd` into cloned `Advent-of-Code` project folder.

Then:

```console
$ pip install -e .
```

Run a specific Day script with `aoc `.

For example, to solve Day 5 Problem:

```console
$ aoc 5
```