diff --git a/dayN.exs b/dayN.exs index 9398faf..2b420f2 100755 --- a/dayN.exs +++ b/dayN.exs @@ -5,7 +5,7 @@ defmodule DayREPLACE_ME do end def part2(_input) do - :ok + :not_implemented end def input do @@ -36,7 +36,7 @@ defmodule DayREPLACE_ME do defp run_with_timer(part, fun) do {time, result} = :timer.tc(fun) IO.puts("Part #{part} (completed in #{format_time(time)}):\n") - IO.puts("#{inspect result}\n") + IO.puts("#{inspect(result)}\n") end defp format_time(μsec) when μsec < 1_000, do: "#{μsec}μs"