advent-of-code/2015-elixir/lib/solutions/day_07.ex

23 lines
338 B
Elixir
Raw Normal View History

2021-11-04 08:52:41 +01:00
defmodule Aoc.Solution.Day07 do
@name "Day 7: Some Assembly Required"
@behaviour Solution
@impl Solution
def get_name, do: @name
@impl Solution
def parse!(_raw) do
"10"
end
@impl Solution
def solve_first_part(_input) do
"(TBW)"
end
@impl Solution
def solve_second_part(_input) do
"(TBW)"
end
end