Skip to content

Instantly share code, notes, and snippets.

@jmaciasluque
Created September 14, 2015 17:28
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save jmaciasluque/6a306657c2d6d32a642d to your computer and use it in GitHub Desktop.
def createList(listSize: Int): List[String] = {
Seq.fill[Int](listSize)(Random.nextInt(sourceWords.size))
.map(sourceWords(_))
.toList
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment