Created
March 20, 2020 15:26
-
-
Save meysampg/fc262008fbb444d5c8a1acd9832c2ce8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def occurrencesOfLang(lang: String, rdd: RDD[WikipediaArticle]): Int = { | |
rdd.aggregate(0)( | |
(ac: Int, a: WikipediaArticle) => ac + a.mentionsLanguage(lang).compare(false), | |
(ac1: Int, ac2: Int) => ac1 + ac2 | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment