Suppose M
is a matrix where each row represents a randomized sequence of a pool of N
objects, e.g.,
1 2 3 4
3 4 1 2
2 1 3 4
How can I efficiently find all the rows in which a number A
comes before a number B
?
e.g., A=1
and B=2
; I want to retrieve the first and the second rows (in which 1
comes before 2
)