#41
Drop Every Nth Item
 

Difficulty:Easy
Topics:seqs


Write a function which drops every Nth item from a sequence.
test not run
(= (__ [1 2 3 4 5 6 7 8] 3) [1 2 4 5 7 8])
test not run
(= (__ [:a :b :c :d :e :f] 2) [:a :c :e])
test not run
(= (__ [1 2 3 4 5 6] 4) [1 2 3 5 6])


Code which fills in the blank: