This is a repo where I am hosting all the files with the code that I used to solve the Advent of Code.
I went with Elixir as my language of choice to solve the challenge, while improving my skills and understanding of the language.
- Day 01 - AoC 2018
- Day 02 - AoC 2018
- Day 03 - AoC 2018
- Day 04 - AoC 2018
- Day 05 - AoC 2018
- Day 06 - AoC 2018
- Day 07 - AoC 2018
- Day 08 - AoC 2018
- Day 09 - AoC 2018
- Day 10 - AoC 2018
- Clone the repo.
- Make sure you have Elixir v1.7.x and OTP 21.x.x installed.
- Run the mix task according to the day and challenge you want to get the result of.
git clone https://github.com/JPYamamoto/advent_of_code_2018
# To run the task of Day 01, Part 1:
mix d01.p1
The Advent of Code is an annual event created by Eric Wastl.
It is 25 days of December with two challenges per day, for you to solve using code.
You choose the language and the tools for you to complete the tasks!
It is an excellent idea for those developers interested in improving their skills through fun short problems to solve with code.
Elixir is a programming language that leverages the robust Erlang virtual machine, while providing developers with a good-looking syntax.
It is excellent at solving problems through the functional paradigm, allowing for concurrent, distributed, stable, scalable and fault-tolerant systems.
- Eric Wastl for creating the challenges for this event every year.
- Mitchell Hanberg for creating the project template for the Advent of Code in Elixir.
- Juan Pablo Yamamoto - @JPYamamoto9 - Website