I have a vector/array of n elements. I want to choose m elements.
The choices must be fair / deterministic -- equally many from each subsection.
With m=10, n
Use a loop (int i=0; i < m; i++)
Then to get the indexes you want, Ceil(i*m/n).