Al Shiferaw has asked for the wisdom of the Perl Monks concerning the following question: ⭐ (arrays)
Given two arrays, I like to know how many of the values in array A match with the values in Array B.
E.G.
I want the result to be 2 since both "A" and "C" exist in both arrays.@Array1 = ("A", "B", "C", "D"); @Array2 = ("J", "C", "T", "A");
Originally posted as a Categorized Question.
Back to
Seekers of Perl Wisdom