Return :todo1 and :todo2 for now

This commit is contained in:
Aurélien Geron
2024-12-06 23:53:47 +13:00
parent 870e27787c
commit 761adb7faf
24 changed files with 96 additions and 96 deletions
+4 -4
View File
@@ -3,11 +3,11 @@ defmodule Aoc2024.Day12 do
input |> String.split("\n", trim: true)
end
def part1(lines) do
length(lines)
def part1(_lines) do
:todo1
end
def part2(lines) do
length(lines)
def part2(_lines) do
:todo2
end
end