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

Latest commit

 

History

History
8 lines (7 loc) · 164 Bytes

BirthdayCakeCandles.md

File metadata and controls

8 lines (7 loc) · 164 Bytes

Birthday Cake Candles

func birthdayCakeCandles(candles: [Int]) -> Int {
    let max = candles.max()
    return candles.filter{ $0 == max }.count
}