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