/aoc-2023

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

aoc-2023

My attempts to solve advent of code 2023 using python and pipenv.

Installation

Prerequesits

To get all the dependencies needed to run the scripts in this repository you need to install pipenv first.

Installing the dependencies

# after cloning the repository and changing to the repo directory
pipenv install

Run the code

# run the script of a specific day
pipenv run python day_01_1.py

# run tests
pipenv run pytest