Help for this page

Select Code to Download


  1. or download this
    while (<WORD>) {
        chomp;
    ...
        my @chars = split(//, $_);
        push @{$wordlist{$#chars}}, $_;
    }
    
  2. or download this
    while ( <WORD> ) {
        chomp;
    ...
        push @{ $wordlist{ length() } }, $_;
    }