Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jbschwartz/aoc

Advent of Code 202x
https://github.com/jbschwartz/aoc

advent-of-code advent-of-code-2022 advent-of-code-2023

Last synced: 8 days ago
JSON representation

Advent of Code 202x

Awesome Lists containing this project

README

        

# Advent of Code

My solutions to [AOC](https://adventofcode.com) written in Python.

## Running

Run solutions with:

```python -m aoc run 2022 8```

Where the first positional argument is the year and the second positional argument is the day.

The `--small` flag runs the solution for the small data (usually found in the text of the problem). Otherwise the solution for the main data is run.

## Stubbing

Stub out input and solution files with:

```python -m aoc stub 2022 8```

Where the first positional argument is the year and the second positional argument is the day.