Objective: Finding the permutation of a list such as ["abc", "bc", "acc"]
Problem: My permutation contains doubled and tripled elements and I want to get rid of those elements.
The result that I obtained from the list above is :
[["abc","bc","acc"],["abc","bc"],["abc","acc","bc"],["abc","acc"],["abc","acc"],["abc"],["bc","abc","acc"],["bc","abc"],["bc","acc","abc"],["bc","acc"],["bc","acc"],["bc"],["acc","abc","bc"],["acc","abc"],["acc","bc","abc"],["acc","bc"],["acc","bc"],["acc"],["bc","acc"],["bc"],["acc","bc"],["acc"],["acc"],[]]
The code that I wrote in order to get rid of those doubled elements is stated below:
fct [] = []
fct (xs)
| (head xs) `elem` xs = fct (delete (head xs) xs)
| otherwise = fct xs
Here I wanted to take the first element of the list and compare it with the rest of the list. Can you help me to find a solution to my problem.
nubfunction in Prelude. If it's too slow then find Bart'snubOrdand perhaps finish what he started in getting that put into base. – Thomas M. DuBuisson Apr 1 '11 at 16:12[[], [a], [b], [c], [a,b], [a,c], [b,a], [b,c], [c,a], [c,b], [a,b,c], [a,c,b], [b,a,c], [b,c,a], [c,a,b], [c,b,a]]– spaceCamel Apr 1 '11 at 23:20