mirror of
https://github.com/rjNemo/ai_advent_code_2024
synced 2026-06-06 10:36:46 +00:00
refactor: Limit public API of Day1 module and remove private function tests
8 lines
294 B
Elixir
8 lines
294 B
Elixir
defmodule AdventCode2024 do
|
|
@moduledoc """
|
|
Documentation for `AdventCode2024`.
|
|
"""
|
|
|
|
defdelegate solve_day1(input_file \\ "day1/input.txt"), to: AdventCode2024.Day1, as: :solve
|
|
defdelegate solve_day1_part2(input_file \\ "day1/input.txt"), to: AdventCode2024.Day1, as: :solve_part2
|
|
end
|