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


in reply to The error says the value is uninitialized, but it works anyway

As a general rule, you should avoid changing an array you are iterating over. That's bound to cause all kinds of headaches. Also, it is favourable to name variables by what they mean, not by what they contain. Here, $num is a bad name. $index is better, so are $i, $j, $k, etc.

Here's my stab at the problem.
use strict; use warnings; my @colors = qw(red green blue yellow pink purple brown); my @drop = qw(pink brown); foreach my $drop_color (@drop) { my $index = 0; foreach my $color (@colors) { if ( $color eq $drop_color ) { splice (@colors, $index, 1); last; } $index++; } } print "@colors \n";
Besides being clearer, this also works with n elements in whatever array, whereas your solution hardcodes two elements in the @drop.


holli

You can lead your users to water, but alas, you cannot drown them.