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

4
lib/common.ex Normal file
View File

@@ -0,0 +1,4 @@
defmodule Aoc2023.Common do
def stringify(s) when is_binary(s) do s end
def stringify(n) when is_integer(n) do inspect(n) end
end