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
- Host: GitHub
- URL: https://github.com/amokan/advent_of_code_2020
- Owner: amokan
- Created: 2020-12-04T16:51:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-04T16:52:52.000Z (over 4 years ago)
- Last Synced: 2025-02-24T05:57:00.320Z (4 months ago)
- Language: Elixir
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.