I keep encountering this question, however my case seems to be unique as it hasn't been addressed in any of the solutions I've found on SO.
My challenge involves a multidimensional array with duplicate arrays that I need to eliminate.
[
[8, 12],
[8, 17],
[8, 92],
[8, 12]
]
The array [8, 12]
is repeated. How can I remove this duplicate?