A Very Big Sum

  • + 8 comments

    My python 3 solution:

    def aVeryBigSum(ar):
        res = 0
        for i in range(len(ar)):
            res += ar[i]
        return res