Help for this page

Select Code to Download


  1. or download this
    #my @db = (1, 3, 5, 7, 9, 11);
    #my @in = (1, 2, 5, 8, 9, 10, 13);
    ...
    push @out, grep { not exists $db_lookup{$_} } @in;
    
    print "view: @out \n";