This question comes up a lot, but my specific situation appears not to be covered by any SO answers I've reviewed.
I have a multidimensional array with some duplicate arrays which I'd like to remove.
[
[8, 12],
[8, 17],
[8, 92],
[8, 12]
]
[8, 12] appears twice. How can I remove this duplicate?