:: Int -> [a] -> [[a]] package:hedgehog

Produce all permutations of removing k elements from a list.
>>> removes 2 "abcdef"
["cdef","abef","abcd"]