1
resposta

Solução

defmodule Tabuada do

    def tabuada(n) do
        tabuada(n, 10, [])
    end

    defp tabuada(_, 0, list), do: list

    defp tabuada(n, m, list) do
        tabuada(n, m-1, [(n*m)|list])
    end
end
1 resposta

Olá, Matheus!

Muito bom