- or download this
push @{$Word{length$_}},$_ while (<>);
- or download this
$len = length($_);
#let's say $len is 5
...
# make a hash key called "5" with an empty array as the value
push($hash{$len},$_);
#use it as an array and push this five-letter word onto it.
- or download this
($_='jjjuuusssttt annootthhrer
pppeeerrrlll haaaccckkeer')=~y/a-z//s;print;