The first half is pretty good. There are a few quibbles, but nothing bad. For the second half, though, you're doing *far* too much work to get the best key/value from the hash. I'dd suggest something more like this:
my ($bestVal, $bestKey) = (-1); foreach my $key (@keys) { if ($hash{$key} > $bestVal) { ($bestVal, $bestKey) = ($hash{$key}, $key); } } print "The most frequent word in $ARGV[0] is $bestKey, which was seen +$bestVal times.\n";
Now on to a few of the quibbles:
This has the additional advantage of removing the need for the @arrays variable.while (my $line = <FILE>) {
I didn't see any real problems, just unnecessary work. Nice work!
Update: Updated first quibble.
...roboticus
When your only tool is a hammer, all problems look like your thumb.
kIn reply to Re: Find most frequently used word in text file.
by roboticus
in thread Find most frequently used word in text file.
by jonesd14
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |