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

https://github.com/eordo/advent-of-code

My Julia solutions to Advent of Code
https://github.com/eordo/advent-of-code

advent-of-code aoc julia

Last synced: 12 months ago
JSON representation

My Julia solutions to Advent of Code

Awesome Lists containing this project

README

          

# Advent of Code

This repository is for my Julia solutions to [Advent of Code](https://adventofcode.com/).
I'm attempting to complete every calendar starting from 2015.

## Getting puzzle inputs

`get_input.py` is a Python script that I use to automate getting and saving puzzle inputs.
After logging in to Advent of Code, save the session cookie in a file named `session.txt`.
Then the puzzle input for any year and day can be fetched from the command line by running

```bash
python get_input.py YEAR DAY
```

The input will be saved to `/YEAR/inputs/day_DAY.txt`.