1
0
Fork 0
advent-of-code/2021/lib/advent_of_code/day0/part0.ex
Sloane Perrault a691461882 Setup 2021 (#1)
* chore: scaffold project

* chore: stand up puzzle solver, puzzle case

* feat: solution runner

* feat: solution generator
2022-09-21 09:19:53 -04:00

11 lines
178 B
Elixir

defmodule AdventOfCode.Day0.Part0 do
alias AdventOfCode.PuzzleSolver
use PuzzleSolver
@impl PuzzleSolver
def solve(stream) do
Stream.run(stream)
"42"
end
end