Skip to content

Instantly share code, notes, and snippets.

@sohnryang
Last active January 31, 2017 22:37
Show Gist options
  • Save sohnryang/57f110560564fd5b8914e78f981d297c to your computer and use it in GitHub Desktop.
Save sohnryang/57f110560564fd5b8914e78f981d297c to your computer and use it in GitHub Desktop.
scala for the impatient - writing function product()
def product(s: String): Long = {
s.foldLeft(1L)(_ * _.toInt)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment