RosettaCodeData/Task/Permutations/Elixir/permutations.ex
2024-10-16 18:07:41 -07:00

8 lines
167 B
Elixir

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])