Elixir
defmodule AdventOfCode.Solution.Year2024.Day02 do
use AdventOfCode.Solution.SharedParse
@impl true
def parse(input) do
for line <- String.split(input, "\n", trim: true),
do: String.split(line) |> Enum.map(&String.to_integer/1)
end
def part1(input) do
Enum.count(input, &is_safe(&1, false))
end
def part2(input) do
Enum.count(input, &(is_safe(&1, true) or is_safe(tl(&1), false)))
end
def is_safe([a, b, c | rest], can_fix) do
cond do
(b - a) * (c - b) > 0 and abs(b - a) in 1..3 and abs(c - b) in 1..3 ->
is_safe([b, c | rest], can_fix)
can_fix ->
is_safe([a, c | rest], false) or is_safe([a, b | rest], false)
true ->
false
end
end
def is_safe(_, _), do: true
end
Elixir
defmodule AdventOfCode.Solution.Year2024.Day01 do use AdventOfCode.Solution.SharedParse @impl true def parse(input) do numbers = input |> String.split("\n", trim: true) |> Enum.map(fn l -> String.split(l, ~r/\s+/) |> Enum.map(&String.to_integer/1) end) {Stream.map(numbers, &Enum.at(&1, 0)), Stream.map(numbers, &Enum.at(&1, 1))} end def part1({left, right}) do Enum.zip_reduce(Enum.sort(left), Enum.sort(right), 0, &(&3 + abs(&1 - &2))) end def part2({left, right}) do freq = Enum.frequencies(right) left |> Stream.map(&(&1 * Map.get(freq, &1, 0))) |> Enum.sum() end end