Skip to content
This repository has been archived by the owner on Dec 17, 2023. It is now read-only.

Latest commit

 

History

History
7 lines (6 loc) · 91 Bytes

AVeryBigSum.md

File metadata and controls

7 lines (6 loc) · 91 Bytes

A Very Big Sum

func aVeryBigSum(ar: [Int]) -> Int {
    ar.reduce(0, +)
}