Fix project structure, fix broken 2023 day 19 pt 1

This commit is contained in:
Caleb Webber 2024-03-26 17:54:04 -04:00
parent bf9e0328a5
commit 09ee6c41cc
27 changed files with 1 additions and 1 deletions

View file

@ -10,7 +10,7 @@ defmodule Mix.Tasks.Day19 do
end)
cond do
part == :part1 -> solve_part_1(commands, toys)
part == :part1 -> solve_part_1(toys, commands)
part == :part2 -> solve_part_2(commands)
end |> IO.puts()
end