http://qs1969.pair.com?node_id=130372


in reply to Re: How to find out if X is an element in an array?
in thread How to find out if X is an element in an array?

Here's a similar approach:
# snip my %hash; $hash{$_}=1 for (@updatelist); $hash{$_}=0 for (@storelist); for (keys %hash) { push @finallist, $_ if ($hash{$_}); }
ie: "make list of new addresses, but cross off those already used".

..02

cLive ;-)