advent-of-code/2018/elixir
Daniel Flanagan 4dffda42ca WIP day 2 2019-12-10 14:15:38 -06:00
..
config Add 2018 files 2019-12-01 14:55:48 -06:00
lib Add 2018 files 2019-12-01 14:55:48 -06:00
test WIP day 2 2019-12-10 14:15:38 -06:00
.formatter.exs Add 2018 files 2019-12-01 14:55:48 -06:00
.gitignore Add 2018 files 2019-12-01 14:55:48 -06:00
README.md Add 2018 files 2019-12-01 14:55:48 -06:00
mix.exs Add 2018 files 2019-12-01 14:55:48 -06:00

README.md

Advent of Code 2018

Herein lies my Elixir solutions for the Advent of Code 2018 puzzles.

Approach

My approach to each problem involves the following procedure:

  1. Write an initial solution for each puzzle with no help beyond code documentation.
  2. Rewrite initial solutions to improve the code's readability and performance.
  3. Watch José Valim (the author of Elixir) solve the solutions.
  4. Refactor again, keeping the core of my solution intact (unless truly awful), but applying anything interesting learned from his solution.