Help for this page

Select Code to Download


  1. or download this
    sort { (exists $a->{vtype_ug}||0) <=> (exists $b->{vtype_ug}||0) }
    
  2. or download this
    @sorted = sort { (exists $b->{vtype_ug}||0) <=> (exists $a->{vtype_ug}
    +||0) }
       sort { $a->{total_rate} <=> $b->{total_rate} }
       @arr;
    
  3. or download this
    @sorted = sort { exists $b->{vtype_ug} <=> exists $a->{vtype_ug} }
       sort { $a->{total_rate} <=> $b->{total_rate} }
       @arr;