advent_of_code/bench/day8_bench.exs
2023-12-08 11:25:25 -05:00

8 lines
151 B
Elixir

{_, puzzle_input} = File.read("./input/2023_8.txt")
Benchee.run(
%{
"day8_part2" => fn -> Mix.Tasks.Day8.solve(puzzle_input, :part2) end
}
)