/ Published in: Haskell
URL: http://haskell.org/haskellwiki/99_questions/11_to_20
problem 14, Duplicate the elements of a list
dupli [1, 2, 3] [1,1,2,2,3,3]
Expand |
Embed | Plain Text
dupli :: [a] -> [a]
You need to login to post a comment.
