/advent-of-code-2021

the dev env and solutions for the advent of code 2021 with Python

Primary LanguagePythonMIT LicenseMIT

Advent Of Code 2021

The dev environment and the solutions for Advent Of Code 2021.

Each solution has a python script with the name pattern: day-{N}.py.

How to use

First, you need vscode and remote container extension installed:

If you have vscode and remote container, open this workspace into the container, run a vscode terminal, and launch this command to install dependencies:

make dependencies

It will install all dependencies inside the remote container with poetry.

You are done, the environment is ready.

To launch a solution for one day:

make run day={{N}}

To see other available commands:

make help