예제 #1
0
        // Ilość słów unikalnych
        private double CountValue(Article article)
        {
            var tmpList = ConvertTextToArray(article.GetRefactoredText());

            value = WordCounter.CountUniqueWords(tmpList);
            return(value);
        }