/ Published in: Haskell
URL: http://haskell.org/haskellwiki/99_questions/11_to_20
problem 15, Replicate the elements of a list a given number of times.
repli "abc" 3 "aaabbbccc"
problem 16, Drop every N'th element from a list.
*Main> dropEvery "abcdefghik" 3
"abdeghk"
You need to login to post a comment.
