in reply to Array compare not matching all elements

Hi, the classic technique is to put the elements of one array into a hash and see if the elements of the other array have keys in the hash.

Update: Here's an example, with some points to consider:

Replies are listed 'Best First'.
Re^2: Array compare not matching all elements
by Dnamonk3 (Novice) on Oct 29, 2018 at 14:31 UTC
    Awesome! Thank you :)