99 questions/Solutions/15
From HaskellWiki
(**) Replicate the elements of a list a given number of times.
repli :: [a] -> Int -> [a] repli xs n = concatMap (replicate n) xs
or, in Pointfree style:
repli = flip $ concatMap . replicate
replicate
repli :: [a] -> Int -> [a] repli xs n = concatMap (take n . repeat) xs
