Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/rgson/adventofcode

My Advent of Code solutions
https://github.com/rgson/adventofcode

advent-of-code advent-of-code-2015 advent-of-code-2016 advent-of-code-2019 programming-challenges

Last synced: about 1 month ago
JSON representation

My Advent of Code solutions

Awesome Lists containing this project

README

        

# Advent of Code

My [Advent of Code](https://adventofcode.com/) solutions.

Each challenge is kept in a separate directory.
Each directory contains the challenge's input and solution.
Solutions are executable. Execute them from within the challenge's directory.

`./new` prepares a new directory and a source file based on a template.

```sh
./new 2019 8 py # prepare a new directory (python template)
cd 2019/08
mv ~/downloads/input.txt . # add the input
editor solution.py # code the solution
./solution.py
```