You are viewing a single comment's thread. Return to all comments →
here is my python code for the given problem
def simpleArraySum(ar): sum=0 for i in ar: sum=sum+i i=i+1 return 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 →
here is my python code for the given problem