23 lines
338 B
Elixir
23 lines
338 B
Elixir
|
|
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
|