I have two perl arrays and I want to remove all elements in common between the two arrays, leaving only the elements in list_one that are unique to list_one.
For example pre-populate two arrays with the following values.
my @list_one = (); push(@list_one,'a'); push(@list_one,'b'); push(@list_one,'c'); my @list_two = (); push(@list_two,'b');