Enum.drop_every/2
defmodule Enum do
def drop_every(enumerable, nth)
end
Returns a list where every nth
element in enumerable
has been dropped, starting with the first element.
The first element is always dropped, unless nth
is 0.
The second argument specifying every nth
element must be a non-negative integer.