Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Always dreamt of using reduce :) solution in Uncategorized category for Multiply (Intro) by vit.aborigen
from functools import reduce
from operator import mul
mult_two = lambda a,b: reduce(mul, (a,b))
Nov. 19, 2018
Comments: