Help for this page

Select Code to Download


  1. or download this
    sub assignmax5 {
        @a = sort@_;
        pop @a;
    }
    
  2. or download this
    sub assignmax5 {
        return (sort @_)[-1];
    }