https://github.com/ryanwinchester/advent-of-code-elixir
Advent of Code
https://github.com/ryanwinchester/advent-of-code-elixir
elixir
Last synced: 9 months ago
JSON representation
Advent of Code
- Host: GitHub
- URL: https://github.com/ryanwinchester/advent-of-code-elixir
- Owner: ryanwinchester
- Created: 2020-12-01T09:44:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-03T14:16:53.000Z (over 1 year ago)
- Last Synced: 2025-05-04T22:37:22.297Z (about 1 year ago)
- Topics: elixir
- Language: Elixir
- Homepage: https://adventofcode.com/
- Size: 296 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code Elixir
My [**Advent of Code**](https://adventofcode.com) adventures. Structured like I would a real project in production.
#### *Please Note:*
I do all the input parsing in the test setup because nobody cares about seeing input parsing.
Every Time.
I parse the input to match what I would expect as a function input in a real Elixir application.
In this way, I'm just working on the interesting parts.
### Dev
Do what you want.
```
mix deps.get
```
To play with the application in `iex`:
```
iex -S mix
```
### Testing
```
mix test
```