Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 444 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 444 Bytes

Advent of Code 2023

My solutions to Advent of Code 2023.

Installation

You will need poetry installed on your system. Run:

python -m venv .venv
source .venv/bin/activate
poetry install

Testing

To run all test:

pytest

Run tests for a specific day challenge with:

pytest aoc/day[n]/

Where n is a number for a specific day.

For linting use:

pylint .