Help for this page

Select Code to Download


  1. or download this
    my @bl = <QA>;
    my @a = <FA>;
    my %h;
    
    @h{@bl} = @bl;
    
  2. or download this
    my %h;
    while (<QA>) {
         $h{$_) = 1;
    }
    
  3. or download this
    %h = map {$_, 1} <QA>;
    
  4. or download this
     %h = map { chomp $_; $_, 1}  <QA>;