in reply to Re: How do I find the biggest number in an array of numbers.
in thread How do I find the biggest number in an array of numbers.

this logic might help sub max { my $max = pop(@_); foreach (@_) { $max = $_ if $_ > $max; } $max; } Shashidhar Iddamsetty
  • Comment on Re: Answer: How do I fin the biggest number in an array of numbers.