advent-of-code/2020-elixir/lib/solution.ex

7 lines
198 B
Elixir
Raw Normal View History

2021-11-01 16:40:46 +01:00
defmodule Solution do
@callback parse!(String.t()) :: Any
@callback get_name() :: String.t()
@callback solve_first_part(Any) :: String.t()
@callback solve_second_part(Any) :: String.t()
end