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
Here is my take:
deleteAt idx xs = lft ++ rgt where (lft, (_:rgt)) = splitAt idx xs