-
-
Save dminuoso/672f3e167ddce78be6945977ce9239ba to your computer and use it in GitHub Desktop.
This file contains 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
import qualified Data.Set as S | |
myNub :: Ord a => [a] -> [a] | |
myNub = go S.empty | |
where | |
go seen [] = [] | |
go seen (x:xs) | x `S.member` seen | |
= go seen xs | |
| otherwise | |
= x : go (S.insert x seen) xs | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment