advent-of-code/2021-elixir/lib/solution.ex
Anders Ytterström d5a29d41e2 🔧 Setup Advent of Code 2021
This year: Elixir! And maybe python.
2021-10-22 17:17:55 +02:00

6 lines
198 B
Elixir

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