I've an array like this:
array(
0 => array(1, 2, 3, 4),
1 => array(1, 3, 2, 4),
2 => array(1, 2, 4, 3),
3 => array(1, 2, 5, 6)
)
I have to remove records that are repeated. So I need finally to have this array:
array(
0 => array(1, 2, 3, 4),
3 => array(1, 2, 5, 6)
)
The script is in PHP.
Who can help? :)