Leeeebs / advent-of-code-2022

https://adventofcode.com/2022/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Advent of code 2022

Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language.

Each day of December poses a new 2-part challenge of varing difficulty.

This repo contains my solutions, written in Python.

Theres a Makefile to make life easier:
make env to build the venv & make run day=<day-number> to run the app.

make env
make run day=2

If you don't wanna use Makefile...

Poetry:

poetry install

Or Manual:

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

To Run:

source .venv/bin/activate
python AOC/app.py <day-number>

e.g.

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python AOC/app.py 2

About

https://adventofcode.com/2022/


Languages

Language:Python 99.4%Language:Makefile 0.6%