Skip to content

Instantly share code, notes, and snippets.

@YuRen-tw
Last active April 27, 2018 07:25
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 YuRen-tw/9c24e474f8ab46f5d1edba2b46be0904 to your computer and use it in GitHub Desktop.
Save YuRen-tw/9c24e474f8ab46f5d1edba2b46be0904 to your computer and use it in GitHub Desktop.
FLOLAC 2018 0-1
nub :: [Int] -> [Int]
nub [] = []
nub (x:xs) = x:(nub $ filter (/= x) xs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment