You are viewing a single comment's thread. Return to all comments →
This one's for the functional peeps out there:
from functools import reduce def simpleArraySum(ar): # Write your code here return reduce(lambda x, y: x + y, ar)
Seems like cookies are disabled on this browser, please enable them to open this website
Simple Array Sum
You are viewing a single comment's thread. Return to all comments →
This one's for the functional peeps out there: