in reply to Re^2: Remove Duplicates from an Array of Arrays
in thread Remove Duplicates from an Array of Arrays

Given the data, using old-style multidimensional hashing would work also:
my @new_AofA = grep { !$seen{$_->[0],$_->[1]}++ } @AofA;