advent-of-code/2015-elixir/lib/solutions/day_07.ex
Anders Ytterström 5ed6e5e8ce Solve day 5-6 2015
2022-11-25 12:03:57 +01:00

22 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