Help for this page

Select Code to Download


  1. or download this
    my $completed_courses = [...];
    my $schedule = {...};
    
  2. or download this
    my %completed;
    
    for (@$completed_courses) {
        $completed{$_->{title}} = undef;
    }
    
  3. or download this
    for (keys %$schedule) {
        delete $schedule->{$_} if exists $completed{$schedule->{$_}{Course
    +}};
    }