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

9 lines
225 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)