Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 735 Bytes

README.md

File metadata and controls

39 lines (29 loc) · 735 Bytes

Advent of Code 2024

https://adventofcode.com/2024

Getting Started

Conda Environment

Create a conda environment:

conda create --name AoC python=3.12

Activate the environment:

conda activate AoC

Installation

Clone the repository and cd into the folder:

git clone https://github.com/erickraemer/AdventOfCode2024.git AoC
cd AoC

Install the repository in edit mode

pip install -e .

Usage

XX is in the following denoted as the Advent of Code day. For example, day 1 is 01.

Advent of Code prohibits uploading the puzzle input. To execute a puzzle, copy your puzzle input from adventofcode.com/2024 into "data/iXX.txt"

To execute enter:

python -m aoc.dayXX