https://github.com/warborn/aoc2019
Solutions of the challenges of Advent of code 2019
https://github.com/warborn/aoc2019
elixir
Last synced: 11 months ago
JSON representation
Solutions of the challenges of Advent of code 2019
- Host: GitHub
- URL: https://github.com/warborn/aoc2019
- Owner: warborn
- Created: 2019-12-04T18:04:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-06T04:47:18.000Z (over 6 years ago)
- Last Synced: 2025-03-04T19:34:09.613Z (over 1 year ago)
- Topics: elixir
- Language: Elixir
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AdventOfCode2019
## Installation
Clone this repo
```sh
git clone https://github.com/warborn/aoc2019.git
```
Install all of the dependencies
```sh
mix deps.get
```
## Solutions
You can get the solutions of the challenges via:
```sh
mix solutions
```
## Tests
You can run the test suite with:
```sh
mix espec
```
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `advent_of_code_2019` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:advent_of_code_2019, "~> 0.1.0"}
]
end
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/advent_of_code_2019](https://hexdocs.pm/advent_of_code_2019).