Help for this page

Select Code to Download


  1. or download this
    my @winners=("ruth","sheila");
    my @correct=("ruth","martin","dee","zack");
    ...
    @correct{@correct}= ();
    delete @correct{@winners};
    print join(' ',keys %correct),"\n";