I'm trying to find an efficient way to remove rows of numpy array that contains duplicated elements. For example, the array below:
[[1,2,3], [1,2,2], [2,2,2]]
should keep [[1,2,3]] only.
I know pandas apply can work row-wise but that's too slow. What is the quicker alternative?
Thanks!
