Powered by AppSignal & Oban Pro

Advent of code 2025 - Day x

template.livemd

Advent of code 2025 - Day x

Description

x

defmodule Load do
  def input do
    File.read!("#{__DIR__}/inputs/x.txt")
    |> String.split("\n")
    |> Enum.filter(&(&1 != ""))
  end
end
defmodule DayX do
  def part1(input) do
  end

  def part2(input) do
  end
end
ExUnit.start(autorun: false)

defmodule Test do
  use ExUnit.Case, async: true

  @input """
         """
         
  test "" do
    assert 1 == 0
  end
end

ExUnit.run()
DayX.part1(Load.input())
DayX.part2(Load.input())