Created
November 1, 2023 09:22
-
-
Save hisusqristos/a45ea4bb66c1e316206887a86c25b432 to your computer and use it in GitHub Desktop.
elm remove duplicates
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
removeDuplicates : List a -> List a | |
removeDuplicates list = | |
case list of | |
[] -> | |
[] | |
first :: rest -> | |
if List.member first rest then | |
removeDuplicates rest | |
else | |
removeDuplicates rest ++ [ first ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
աղջիկ ջան