- Write a Haskell function unique that returns the list ofelements that occur exactly once in the argumentlist. Must use recursion and not listcomprehension. A helper function, or functions, may beuseful.
unique :: Eq a => [a] -> [a]
Solution
Solution