Skip to content

Instantly share code, notes, and snippets.

@saevarb
Created November 10, 2014 17:22
Show Gist options
  • Save saevarb/4e58420af3e32956f91a to your computer and use it in GitHub Desktop.
Save saevarb/4e58420af3e32956f91a to your computer and use it in GitHub Desktop.
remdups :: Eq a => [a] -> [a]
remdups =
foldr rm []
where
rm a [] = [a]
rm a (x:l) =
if a == x
then x:l
else a:x:l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment