Add stubs for days 2 to 25

This commit is contained in:
Aurélien Geron
2024-12-06 23:48:02 +13:00
parent adfaafec83
commit 870e27787c
48 changed files with 2970 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
defmodule Aoc2024.Day06 do
def parse(input) do
input |> String.split("\n", trim: true)
end
def part1(lines) do
length(lines)
end
def part2(lines) do
length(lines)
end
end