I\'m new in haskell and I\'m looking for some standard functions to work with lists by indexes.
My exact problem is that i want to remove 3 elements after every 5. If i
myRemove = map snd . filter fst . zip (cycle $ (replicate 5 True) ++ (replicate 3 False))