This commit is contained in:
bluepython508
2023-12-01 17:51:59 +00:00
commit c106776503
13 changed files with 310 additions and 0 deletions

6
lib/day1.ex Normal file
View File

@@ -0,0 +1,6 @@
defmodule Aoc2023.Day1 do
use Aoc2023
def parse(input) do input end
def part1(input) do nil end
def part2(input) do nil end
end