1
0
Fork 0
advent-of-code/2021/lib/advent_of_code/day0/part0.ex

12 lines
178 B
Elixir
Raw Normal View History

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