http://qs321.pair.com?node_id=702559


in reply to Comparing arrays in perl.

Your specification isn't very exact. Looks like you want two different functions. I suggest you take advantage of Perl's testing modules to specify what you want with several examples, and then play with code until all your tests pass. You can take advantage of eq_array to compare arrays. (Note: if your arrays contain references, you have more decisions to make.)

For example one of the things you're looking for seems to be to delete duplicates while preserving order. Let's call this first_filter.

use Test::More qw(no_plan); eq_array([first_filter(qw/one two three/)], [qw/one two three/], "clean list doesn't get changed"); eq_array([first_filter(qw/one one one/)], [qw/one/], "simple repetition removed"); eq_array([first_filter(qw/one two one/)], [qw/one two/], "interleaved repetition removed");

...and so on. The nice thing about this is that if I got it wrong, and this isn't the function you want, you can change the test and add more examples to clarify what you mean. When people offer you suggestions for implementation, you can with one line check their stuff and immediately see if it does everything you want it to.