Help for this page

Select Code to Download


  1. or download this
    $courselist[$courseindex] = [$Institution, $CourseNumber, $Professor, 
    +$CourseTitle, $Enrollment]
    
  2. or download this
    $courseindex[0] = ["UM", "CS 34", ......]
    $courseindex[1] = ["AC", "PHIL 13", ....]
    $courseindex[2] = ["UM:, "BIO 567', ....]
    
  3. or download this
    $courseindex[0] = ["AC", "PHIL 13", ....]
    $courseindex[1] = ["UM", "BIO 567', ....]
    $courseindex[2] = ["UM", "CS 34", ......]
    
  4. or download this
    @courselist = sort {$$a[n] cmp $$b[n]} @courselist;