https://github.com/mbuffa/advent-of-code-2021
My take on Advent of Code 2021 in Elixir
https://github.com/mbuffa/advent-of-code-2021
advent-of-code-2021 elixir
Last synced: 8 months ago
JSON representation
My take on Advent of Code 2021 in Elixir
- Host: GitHub
- URL: https://github.com/mbuffa/advent-of-code-2021
- Owner: mbuffa
- Created: 2021-12-01T22:14:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-15T21:19:24.000Z (over 4 years ago)
- Last Synced: 2025-05-07T06:57:11.895Z (about 1 year ago)
- Topics: advent-of-code-2021, elixir
- Language: Elixir
- Homepage:
- Size: 56.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Aoc2021
That's my take at Advent of Code 2021 using Elixir.
## Running the code.
* Have Elixir and Erlang installed.
* Simply open a terminal and execute examples, like this:
```
iex -S mix
iex> Day1.run("data/1/example.txt")
iex> Day1.run("data/1/input.txt")
iex> Day1.run_part_two("data/1/input.txt")
```