Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Thanks, Paul# Grabs each district from all_store array foreach $dist_only (@all_store_info) { my @array = split(/ / , $dist_only); my $test = @array; next if $test < 2; $distlist = "$array[1] $array[2] $array[3]"; push(@dist_list, $distlist); #print "$distlist\n"; } @dist_list = sort { $a <=> $b } @dist_list; my %uniq; undef @uniq{@dist_list}; @dist_list = keys %uniq;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: read-only error
by ikegami (Patriarch) on Aug 24, 2006 at 17:56 UTC | |
by imp (Priest) on Aug 24, 2006 at 19:38 UTC | |
by ikegami (Patriarch) on Aug 24, 2006 at 19:52 UTC | |
|
Re: read-only error
by imp (Priest) on Aug 24, 2006 at 17:59 UTC | |
by Anonymous Monk on Aug 24, 2006 at 18:43 UTC | |
by imp (Priest) on Aug 24, 2006 at 19:05 UTC | |
by grep (Monsignor) on Aug 24, 2006 at 18:47 UTC | |
|
Re: read-only error
by grep (Monsignor) on Aug 24, 2006 at 18:20 UTC | |
|
Re: read-only error
by shmem (Chancellor) on Aug 24, 2006 at 17:58 UTC | |
|
Re: read-only error
by Anonymous Monk on Aug 24, 2006 at 18:20 UTC | |
by grep (Monsignor) on Aug 24, 2006 at 18:31 UTC | |
by ikegami (Patriarch) on Aug 24, 2006 at 18:32 UTC |