Help for this page

Select Code to Download


  1. or download this
        my %referencedSentences = ();
        foreach my $j (@{$words[$i]}) {
    ...
            }
        }
        push (@temp, \%referencedSentences);
    
  2. or download this
    my @list;
    foreach my $refToIndicesArray (values %{$hash}) {
       push (@list, @{$refToIndicesArray});
    }