You are viewing a single comment's thread. Return to all comments →
def simpleArraySum(ar): finalSum = 0 for i in range(len(ar)): finalSum += ar[i] return finalSum
python
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 →
def simpleArraySum(ar): finalSum = 0 for i in range(len(ar)): finalSum += ar[i] return finalSum
python