Last active
April 27, 2018 07:25
-
-
Save YuRen-tw/9c24e474f8ab46f5d1edba2b46be0904 to your computer and use it in GitHub Desktop.
FLOLAC 2018 0-1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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