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!
- Host: GitHub
- URL: https://github.com/rnag/advent-of-code
- Owner: rnag
- Created: 2024-12-14T16:51:48.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-12-17T04:26:00.000Z (12 months ago)
- Last Synced: 2025-06-09T01:35:49.085Z (6 months ago)
- Topics: 100-days-of-code, 100daysofcode, advent-of-code, advent-of-code-2024, advent-of-code-2024-python, advent-of-code-python
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```