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

@list = sort { $a <=> $b } @list; $max = $list[$#list];