exercism/elixir/sublist/sublist.exs

9 lines
215 B
Elixir
Raw Normal View History

2018-03-05 19:40:19 +00:00
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