Thread schwarz'scher filter?: entferne dups aus array
(18 answers)
Opened by lichtkind at 2005-03-07 22:01
Hmm, wenn Du tatsaechlich die Reihenfolge behalten willst, nimm doch so etwas hier:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 use strict; use warnings; my @array = <>; my @uniq; my %hash; for (@array) { push @uniq, $hash{$_} = $_ unless exists $hash{$_}; } print @uniq; Lieblingsmodule: IPC::System::Simple, Path::Class
|