exercism/elixir/sublist/sublist.exs

9 lines
215 B
Elixir

defmodule Sublist do
@doc """
Returns whether the first list is a sublist or a superlist of the second list
and if not whether it is equal or unequal to the second list.
"""
def compare(a, b) do
end
end