You are viewing a single comment's thread. Return to all comments →
Python Code:
def simpleArraySum(ar):
# Write your code here ar_sum = 0 for i in ar: ar_sum += i return ar_sum
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 →
Python Code:
def simpleArraySum(ar):