advent-of-code/2018/elixir/README.md

15 lines
544 B
Markdown
Raw Permalink Normal View History

2019-12-01 14:55:48 -06:00
# 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.