2023 Day 9

This commit is contained in:
Adam Millerchip 2024-12-01 22:23:58 +09:00
parent fb8ea486cc
commit 405a2fd97f

74
2023/day9.exs Executable file
View file

@ -0,0 +1,74 @@
#!/usr/bin/env elixir
defmodule Day9 do
def part1(histories) do
history = hd(histories)
# repeatedly diff until all the same
# then walk back up adding last value to last value of above
# when at end, that's the final value
end
def walk(history, acc) do
last = List.last(history)
dbg(last)
case Enum.uniq(history) do
[_] -> last
_ -> last + walk(diff(history), last)
end
end
def diff([_]), do: []
def diff([a, b | rest]), do: [b - a | diff([b | rest])]
def part2(_input) do
:ok
end
def input do
with [input_filename] <- System.argv(),
{:ok, input} <- File.read(input_filename) do
input
|> String.split("\n", trim: true)
|> Enum.map(fn line ->
line
|> String.split(" ")
|> Enum.map(&String.to_integer/1)
end)
else
_ -> :error
end
end
#######################
# HERE BE BOILERPLATE #
#######################
def run do
case input() do
:error -> print_usage()
input -> run_parts_with_timer(input)
end
end
defp run_parts_with_timer(input) do
run_with_timer(1, fn -> part1(input) end)
run_with_timer(2, fn -> part2(input) end)
end
defp run_with_timer(part, fun) do
{time, result} = :timer.tc(fun)
IO.puts("Part #{part} (completed in #{format_time(time)}):\n")
IO.puts("#{inspect(result)}\n")
end
defp format_time(μsec) when μsec < 1_000, do: "#{μsec}μs"
defp format_time(μsec) when μsec < 1_000_000, do: "#{μsec / 1000}ms"
defp format_time(μsec), do: "#{μsec / 1_000_000}s"
defp print_usage do
IO.puts("Usage: elixir day9.exs input_filename")
end
end
# Day9.run()