RosettaCodeData/Task/Permutations/Elixir/permutations.elixir
2015-11-18 06:14:39 +00:00

8 lines
167 B
Text

defmodule RC do
def permute([]), do: [[]]
def permute(list) do
for x <- list, y <- permute(list -- [x]), do: [x|y]
end
end
IO.inspect RC.permute([1, 2, 3])