Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tusharsadhwani/aoc2021

My Advent of Code 2021 solutions.
https://github.com/tusharsadhwani/aoc2021

advent-of-code

Last synced: 25 days ago
JSON representation

My Advent of Code 2021 solutions.

Awesome Lists containing this project

README

        

# aoc2021

My [Advent of Code](https://adventofcode.com) 2021 solutions. Written in python with [type annotations](https://sadh.life/post/mypy-guide).

## Running

Find the answers to part1 and part2 of any day of the problem by:

- Replacing `day_XX/input` file contents with your input.
- Running `python day_XX/main.py`. It will output two values, one for each part.

## Testing

Run `pytest day_XX/main.py` to test that file.
Run `./test_all.sh` to test and type check all files.