Help for this page

Select Code to Download


  1. or download this
        @b = sort { length $b <=> length $a } @a;
    
  2. or download this
        @b = sort { length $b <=> length $a 
                               ||
                           $a cmp $b
                  } @a;