in reply to Find unique elements from multiple arrays

@a = qw (a c d); @b = qw(s d v); @c = qw(l d s); @d = qw(i c f); @new = (@a,@b,@c,@d); @new{@new} = (); @new = keys %new;