in reply to Golf: Count unique words
Right? Ok ... I come in at 81 characters. 78 for the code and 3 for the switches.
#!perl -nl END{print"$_ ($w{$_})"for sort keys%w;print"\n$t"}s/\b(\w+)\b/$w{$1}++ +;$t++/eg
It's basically a rewrite of your code, with a few enhancements.
Being right, does not endow the right to be rude; politeness costs nothing.
Being unknowing, is not the same as being stupid.
Expressing a contrary opinion, whether to the individual or the group, is more often a sign of deeper thought than of cantankerous belligerence.
Do not mistake your goals as the only goals; your opinion as the only opinion; your confidence as correctness. Saying you know better is not the same as explaining you know better.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Golf: Count unique words
by Fletch (Bishop) on Nov 30, 2004 at 15:24 UTC | |
by eyepopslikeamosquito (Archbishop) on Dec 01, 2004 at 06:36 UTC |