From: Richard Kojedzinszky Date: Fri, 26 Sep 2014 07:43:00 +0000 (+0200) Subject: uwc: clarified the output X-Git-Url: http://git.neszt.hu/?a=commitdiff_plain;h=59ef0959904e7abad8464f9b60e61db9f4744547;p=uwc.git uwc: clarified the output --- diff --git a/README b/README index be36afe..d86cd2f 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ This is a collection of the 'unique word count' implemented in many languages. All software should read stdin, parse all words in it, and -count their occurence, and then print the words with highest occurence first and their occurences, -one by line. +count their occurence. Then sort the words by their occurence and lexicogrphically, and print the +word and its occurence line-by-line. Words should be matched by the regular expression [a-z']+ case insensitive.