stella
0
Q:

delete a as haskell

removeItem _ []                 = []
removeItem x (y:ys) | x == y    = removeItem x ys
                    | otherwise = y : removeItem x ys
0

New to Communities?

Join the community