Hi,
I have a 2D array that contains a list of UIDs in row 1 and a flag in row2
I pick a random line, do stuff with the UID and delete the line
and then I want to find that other line that has the same flag to remove it as well
could look something like this:
UID Flag
41 0
45 0
50 1 <- randomizer might pick this line for example
53 1
59 2
62 2
how do i find and remove the other ones that are flagged the same?