Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 584 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 584 Bytes

Advent of Code 2021

This repository contains my python3 solutions to the Advent of Code 2021 problems. The amount of documentation is directly correlated with the perceived complexity of the particular problem.

Select and run

Run selector.py and input the days and parts of interest. It supports a list of days using comma as a separator:

python3 selector.py days

For example, running days 1 through 3 would simply require typing in:

python3 selector.py 1,2,3

Or, alternatively,

./selector.py 1,2,3