remove debug var

This commit is contained in:
Caleb Webber 2023-10-29 01:09:26 -04:00
parent 5b6b8bb55b
commit bac2473cd9

View file

@ -13,8 +13,7 @@ defmodule Day3 do
end end
defp to_priority(c) do defp to_priority(c) do
u = if is_nil(c) do 0 else if c < 97 do c - 38 else c - 96 end end if is_nil(c) do 0 else if c < 97 do c - 38 else c - 96 end end
u
end end
def execute(line, state) do def execute(line, state) do