Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agilous/2020-advent-of-code
My solutions for the 2020 Advent of Code
https://github.com/agilous/2020-advent-of-code
advent-of-code advent-of-code-2020
Last synced: 24 days ago
JSON representation
My solutions for the 2020 Advent of Code
- Host: GitHub
- URL: https://github.com/agilous/2020-advent-of-code
- Owner: agilous
- Created: 2020-12-01T19:11:21.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-09T07:42:42.000Z (about 4 years ago)
- Last Synced: 2024-12-24T08:44:51.484Z (30 days ago)
- Topics: advent-of-code, advent-of-code-2020
- Language: Elixir
- Homepage:
- Size: 81.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 2020 Advent of Code
My "solutions" such as they are for the [2020 Advent of Code](https://adventofcode.com/2020).## Getting Started
```sh
git clone [email protected]:agilous/2020-advent-of-code.git
cd 2020-advent-of-code
asdf install # Or your version manager of preference.
mix test
```
Then run individual files to see results:
```sh
elixir lib/day-01/question-01.ex
# --OR--
mix run lib/day-01/question-01.ex
```## Benchmarks
Benchmarks provided via [Benchee](https://hex.pm/packages/benchee):
```sh
mix run test/benchmark.exs
```