mirror of
https://github.com/rjNemo/exercism-elixir
synced 2026-06-06 02:16:48 +00:00
8 lines
210 B
Elixir
8 lines
210 B
Elixir
defmodule Anagram do
|
|
@doc """
|
|
Returns all candidates that are anagrams of, but not equal to, 'base'.
|
|
"""
|
|
@spec match(String.t(), [String.t()]) :: [String.t()]
|
|
def match(base, candidates) do
|
|
end
|
|
end
|