http://qs321.pair.com?node_id=1232674


in reply to Re^2: Max value
in thread Max value

Hello ameezys,

You do not need to post your whole code unless if it is necessary. If I run your code I can see the array that you want the max value contains:

$VAR1 = [ 1, 1, 3 ];

So a sample of data like that (see below):

my @array = qw(1 1 3); print Dumper \@array; __END__ $VAR1 = [ 1, 1, 3 ];

Would be sufficient, but my answer to your question is already covered :).

BR / Thanos

Seeking for Perl wisdom...on the process of learning...not there...yet!