From 246640d2a18010e51e072729774836fa1ee4e7d8 Mon Sep 17 00:00:00 2001 From: Adam Millerchip Date: Sun, 22 Dec 2024 18:35:39 +0900 Subject: [PATCH] Return :not_implemented for Part 2 until done --- dayN.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"