Thread Maximaler und minimaler Wert eines Arrays (2 answers)
Opened by roooot at 2008-03-28 13:28

renee
 2008-03-28 13:33
#107597 #107597
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Es gibt CPAN:List::Util:

Code (perl): (dl )
1
2
3
4
5
6
7
use List::Util qw(min max);

my @array = qw(1 2 6 3 2 7 9 0);
my $min = min @array;
my $max = max @array;

print "min: $min -> max: $max\n";
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Maximaler und minimaler Wert eines Arrays