I need help to make a function in haskell in which you have a list and a number and then return the list without the given number
Enter [1,2,3,4,4,4,5] 4
Show [1,2,3,5]
This way
removeElement :: (Eq a) = > [a] - > a - > [a]
Gre...
asked by
05.10.2018 / 04:04