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
- Host: GitHub
- URL: https://github.com/glebec/advent-of-code-2019
- Owner: glebec
- License: bsd-3-clause
- Created: 2019-12-01T06:24:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-09T05:35:33.000Z (over 6 years ago)
- Last Synced: 2025-03-03T06:31:15.342Z (over 1 year ago)
- Topics: advent-of-code, advent-of-code-2019, algorithms, challenge, functional-programming, haskell, puzzles, solutions
- Language: Haskell
- Size: 43.9 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 | |