in reply to Re: See if arrays match
in thread See if arrays match
Looks like that only works if you are guaranteed that no items appear in the same list more than once. It would not work properly for this:
@a = ( 1, 2, 3, 4, 2 );
@b = ( 1, 3, 5 );
|
|---|