I have been trying to think this thru but haven't been able to get a clean solution. So, I have a a list of lists like..
data = [
[1,2,3],
['a','b'],
['fush', 'bush', 'mish', 'bish']
]
And I want to sample "k" values out of this.. But in order.
So for example.. if k = 2, then it can return something like [2, 'b']
(And remove that from the consideration).
if k = 4, then it should return something like [3, 'a','bush', 1]
.