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) · 137 Bytes

SimpleArraySum.md

File metadata and controls

7 lines (6 loc) · 137 Bytes

Simple Array Sum

func simpleArraySum(ar: [Int]) -> Int {
    (ar.count > 0 && ar.count <= 1000) ? ar.reduce(0, +) : 0
}