Skip to content

Instantly share code, notes, and snippets.

@bka9
Created November 5, 2014 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bka9/7d393ebfdc316056d42b to your computer and use it in GitHub Desktop.
Save bka9/7d393ebfdc316056d42b to your computer and use it in GitHub Desktop.
def countOnPage(urls: List(String), search: String) = {
var count = 0
urls.map{ url =>
val fStrings : Future[Int] = countOnPage(url,search)
fStrings.map{ num =>
count = count + num;
}
}
count
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment