http://www.perlmonks.org?node_id=1003988


in reply to Re: Use hashes instead of grep
in thread How to grep exact string

Not really. Even if the code uses both arrays then there is nothing preventing building a temporary hash through
my %hash = map { $_ => 1 } @first_list;
..and then discarding the hash after the check for new machines. More likely is that he is only interested in the second list, or just new machines, and they could be in an array just like before.
A Monk aims to give answers to those who have none, and to learn from those who know more.