Help for this page

Select Code to Download


  1. or download this
    map {chomp $_->[2]; $data{$_->[0]}{$_->[1]}{$_->[2]} = ''} [split /\s+
    +/]
        for <DATA>;
    
  2. or download this
    map {$data{$_->[0]}{$_->[1]}{$_->[2]} = ''} [split]
        for <DATA>;
    
  3. or download this
    $data{$_->[0]}{$_->[1]}{$_->[2]} = '' for map [split], <DATA>;