Skip to content

Instantly share code, notes, and snippets.

@redbug312
Created May 1, 2018 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save redbug312/ed954151416c3293f271d0e6f46e5494 to your computer and use it in GitHub Desktop.
Save redbug312/ed954151416c3293f271d0e6f46e5494 to your computer and use it in GitHub Desktop.
FLOLAC'18 prerequisite p1
nub :: [Int] -> [Int]
nub [] = []
nub [x] = [x]
nub (x:xs) = if x `elem` xs then nub xs else x : nub xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment