-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathday_05.ex
38 lines (33 loc) · 882 Bytes
/
day_05.ex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
defmodule AdventOfCode.Y2018.Day05 do
@moduledoc """
--- Day 5: Alchemical Reduction ---
Problem Link: https://adventofcode.com/2018/day/5
Difficulty: l
Tags: reduction
"""
alias AdventOfCode.Helpers.InputReader
def input, do: InputReader.read_from_file(2018, 5)
def run(input \\ input()) do
input = String.to_charlist(input)
{run_1(input), run_2(input)}
end
def run_1(input), do: react(input)
@units ?A..?Z
def run_2(input) do
Enum.min(
@units
|> Enum.map(fn unit ->
input
|> Enum.reject(&(&1 == unit or abs(&1 - unit) == 32))
|> react()
end)
)
end
def react(polymer) do
Enum.reduce(polymer, {0, []}, fn
unit, {length, [top | stack]} when abs(top - unit) == 32 -> {length - 1, stack}
unit, {length, stack} -> {length + 1, [unit | stack]}
end)
|> elem(0)
end
end