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

https://github.com/tejasbubane/adventofcode-2018

My solutions to Advent of Code 2018 in Haskell
https://github.com/tejasbubane/adventofcode-2018

advent-of-code-2018 haskell haskell-exercises puzzles

Last synced: 11 months ago
JSON representation

My solutions to Advent of Code 2018 in Haskell

Awesome Lists containing this project

README

          

# Advent of Code - 2018

[![Build Status](https://travis-ci.org/tejasbubane/adventofcode-2018.svg?branch=master)](https://travis-ci.org/tejasbubane/adventofcode-2018)

My solutions to problems in [Advent of Code 2018](https://adventofcode.com/2018/) in [Haskell](https://www.haskell.org/).

* [Day1.hs](src/Day1.hs)
* [Day2.hs](src/Day2.hs)
* [Day3.hs](src/Day3.hs)
* [Day4.hs](src/Day4.hs)
* [Day5.hs](src/Day5.hs)
* [Day6.hs](src/Day6.hs)
* [Day7.hs](src/Day7.hs)
* [Day9.hs](src/Day9.hs)
* [Day14.hs](src/Day14.hs)
* [Day16.hs](src/Day16.hs)

### Tests

Run the test suite:

```sh
stack test
```