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

https://github.com/glebec/advent-of-code-2019

Advent of Code 2019 Solutions in Haskell
https://github.com/glebec/advent-of-code-2019

advent-of-code advent-of-code-2019 algorithms challenge functional-programming haskell puzzles solutions

Last synced: 14 days ago
JSON representation

Advent of Code 2019 Solutions in Haskell

Awesome Lists containing this project

README

          

# Advent of Code 2019

This repo contains my solutions to the [2019 Advent of Code](https://adventofcode.com/2019) challenge.

I will be attempting solutions in [Haskell](http://haskell.org/) (specifically [GHC](https://wiki.haskell.org/GHC)).

## Setup

This project uses [Stack](https://docs.haskellstack.org). Assuming you have Stack installed, the easiest way to evaluate the code examples is to launch the GHCi REPL via `stack ghci` in the root directory.

## Problems

Day | Prompt | Solution
----|--------|---------
1 | [The Tyranny of the Rocket Equation](https://adventofcode.com/2019/day/1) | [src/Day01/Solution.hs](src/Day01/Solution.hs)
2 | [1202 Program Alarm](https://adventofcode.com/2019/day/2) | [src/Day02/Solution.hs](src/Day02/Solution.hs)
3 | [Crossed Wires](https://adventofcode.com/2019/day/3) | [src/Day03/Solution.hs](src/Day03/Solution.hs)
4 | [Secure Container](https://adventofcode.com/2019/day/4) | [src/Day04/Solution.hs](src/Day04/Solution.hs)
5 | |
6 | [Universal Orbit Map](https://adventofcode.com/2019/day/6) | [src/Day06/Solution.hs](src/Day06/Solution.hs)
7 | |
8 | [Space Image Format](https://adventofcode.com/2019/day/8) | [src/Day08/Solution.hs](src/Day08/Solution.hs)
9 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | |
20 | |
21 | |
22 | |
23 | |
24 | |
25 | |