2017-05-19
Implement Permutation in Elixir
The community on StackOverflow seems not convinced, but I wave my flag for this implementation written by Nathan Long on StackOverflow.
As list comprehension is
implemented in Elixir
(with for/1). And list comprehension is the right logic for the job.
defmodule Permutations do
def of([]), do: [[]]
def of(list), do: for h <- list, t <- of(list -- [h]), do: [h | t]
endNo need for recursions and pattern matched function calls.
← Previous Post | Next Post →