Simple Array Sum

  • + 0 comments

    def simpleArraySum(ar): c = 0 for i in ar:
    c = c + i return c