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

https://github.com/amokan/advent_of_code_2020

Elixir-based solutions for Advent of Code 2020
https://github.com/amokan/advent_of_code_2020

Last synced: 3 months ago
JSON representation

Elixir-based solutions for Advent of Code 2020

Awesome Lists containing this project

README

        

# AdventOfCode2020

Elixir-based solutions for [Advent of Code 2020](https://adventofcode.com/2020).

----

## Dependencies

### Pulling/Compiling

`mix deps.get && mix deps.compile`

### Check For Outdated Deps

`mix hex.outdated`

### Update Dependencies (and the `mix.lock` file)

`mix deps.update --all`

----

## Running The Solutions

Launch the project in iex using `iex -S mix`

`AdventOfCode2020.run_all` to run all problems that I have completed.

----

## Unit Tests (If any exist)

Run `mix test` to process the test suite.