in reply to Re^2: Fast Way to Return Unique Array of Array
in thread Fast Way to Return Unique Array of Array
Your example above is problematic: Shouldn't it be this:my @AoA = (['a,','b','c'], ['a',',b','c'], );
With the latest modification of your example my code still return the correct answer.my @AoA = (['a','b','c'], ['a','b','c'], );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Fast Way to Return Unique Array of Array
by pg (Canon) on Sep 05, 2005 at 04:23 UTC |