Current section
Files
Jump to
Current section
Files
template/solution.eex
defmodule Aletopelta.Year<%= year %>.Day<%= day %> do
defmodule Common do
def parse_input(input) do
end
end
defmodule Part1 do
def execute(input) do
Common.parse_input(input)
end
end
defmodule Part2 do
def execute(input) do
Common.parse_input(input)
end
end
end