Open main menu

CDOT Wiki β

Changes

The Real A Team

44 bytes removed, 12:35, 5 April 2016
Full Program
...
val t1WordCount = text1.flatMap(line => line.split(" ")).mapcount(word => (word, 1)).reduceByKey((a, b) => a + b)
val t1SentenceCount = text1.flatMap(line => line.split("")).filter(character => character = ".").count()