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

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

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")
```