Hello!
I will explain to the best of my ability. I have a list of users (list no.1) and each has a value of either 1,2,3 or 4 (a field). They are sorted in that list based on the numerically so all “one” comes first and the “two” etc.
My program takes users from that list (list no.1) and put them into another list (list no.2). But the list no.2 will always take the, for instance, first, third and fifth item from list no.1. But I need those users that list no.2 picks from list no.1 to be different each time. The first, third and fifth item on list no.1 must be different users each time. But the users in list no.1 must also always be sorted 1,2,3,4.
If I add a random decimal to their original value, for instance, 3 --> 3,4, they would shuffle around. But still, be sorted after their original value 1,2,3,4
Example:
(User 1) value = 1,2
(User2 ) value =1,4
(User 3) value =1,7
(User 4) value =2,3
(User 5) value =2,4
(User6 ) value =2,7
(User 7) value =3.2
(User8 ) value =3,5
(User 9) value =3,7
(User 10) value =4,2
(User 11) value =4,3
And because of that list, no.2 would pick different users every time from list no.1
@mishav
@scottb50
@Bubbleboy