Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 572 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 572 Bytes

aoc2017

My solutions to the 2017 advent of code using Elixir/Erlang. I started with Erlang and switched to learn Elixir around day 3.

To run, you need to install Elixir

Build

$ mix compile

How to run

$ iex -S mix
Interactive Elixir (1.5.2) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> Aoc2017.go day

Where day is day number for the problem you want to see the result from.

You can also run

1> Aoc2017.go :all

To see all of the results at once.