Skip to content

Instantly share code, notes, and snippets.

@hsinewu
Last active December 14, 2016 02:06
Show Gist options
  • Save hsinewu/78d7426cb640f1b56a305026da57144e to your computer and use it in GitHub Desktop.
Save hsinewu/78d7426cb640f1b56a305026da57144e to your computer and use it in GitHub Desktop.
csv product in FP
fmap (product.map read.words) getLine
from functools import reduce # reduce is moved to functools in python3 :(
reduce(lambda x,y: x*y, map(int, input().split()))
gets.split.map(&:to_i).inject(&:*)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment