Files
advent_of_code/lib/year_2025/day1.exs
2025-12-13 15:44:10 -05:00

10 lines
237 B
Elixir

filepath = Path.join([File.cwd!(), "lib", "year_2025", "day1_input.txt"])
ops =
File.stream!(filepath)
|> Stream.map(&String.trim_trailing/1)
|> Enum.to_list()
{_, zeroes} = AdventOfCode.Year2025.Dial.rotate(ops)
IO.puts(zeroes)