in reply to Re: Updating 1 array affects the other array
in thread Updating 1 array affects the other array
my %seen_values; my @unique_terminal_id = grep { !($seen_values{$_->[4]}++) } @temp_ope +n_single; my %seen_values; my @unique_manufacturer_model = grep { !($seen_values{$_->[9]}{$_->[10 +]}++) } @unique_terminal_id; my %seen_values; my @unique_manufacturer_model_version = grep { !($seen_values{$_->[9]} +{$_->[10]}{$_->[11]}++) } @unique_terminal_id;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Updating 1 array affects the other array
by JadeNB (Chaplain) on Sep 02, 2008 at 14:29 UTC |