day 8 benchmark

This commit is contained in:
Caleb Webber 2023-12-08 11:25:25 -05:00
parent 3cd2b6abe2
commit d22fcbbedd

8
bench/day8_bench.exs Normal file
View file

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