From 4bcba9d8207958326dffc9aae81a3d23df205f41 Mon Sep 17 00:00:00 2001 From: Wasi Mohammed Abdullah Date: Sun, 1 Dec 2024 21:54:26 +0600 Subject: [PATCH] advent of code 2024 day 01 solution --- lib/y2024/day_01.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/y2024/day_01.ex b/lib/y2024/day_01.ex index eb21ef5..4fdabf3 100644 --- a/lib/y2024/day_01.ex +++ b/lib/y2024/day_01.ex @@ -24,5 +24,5 @@ defmodule Aoc.Y2024.Day01 do |> Enum.map(fn string -> string |> String.split(" ") |> Enum.map(&String.to_integer/1) end) end - def solved_status(), do: :unsolved + def solved_status(), do: :solved end