Sha256: 5940120f533ea155cb556a7d6a3bb3e969b9a80ac8ef79f61011c3785951e104
Contents?: true
Size: 272 Bytes
Versions: 257
Compression:
Stored size: 272 Bytes
Contents
class Phrase(phrase: String) { def wordCount = groupedWords.mapValues(_.size) private def groupedWords = words.groupBy(w => w) private def words = withoutPunctuation.split("\\s+") private def withoutPunctuation = phrase.toLowerCase.replaceAll("[^\\w']", " ") }
Version data entries
257 entries across 257 versions & 1 rubygems