We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Algorithms
- Warmup
- Birthday Cake Candles
- Discussions
Birthday Cake Candles
Birthday Cake Candles
Sort by
recency
|
5323 Discussions
|
Please Login in order to post a comment
My solution on Python: def birthdayCakeCandles(candles): candles.sort() c = sum(1 for i in candles if candles[-1] == i) return c
it sum +1 if the element i has the same value has the last element on the sorted list (highest value) so it returns the count of the elements with the highest value (tallest candle)
TYPESCRIPT function birthdayCakeCandles(candles: number[]): number { const count = new Map(); candles.sort((a,b) => b-a); for(let can of candles){ let prevCount = count.get(can) || 0; count.set(can,prevCount + 1); } console.log(count.get(candles[0])); return count.get(candles[0])
}
c++
Here is my solution for Java 8.
Python solution using simple for loop (a bit verbose but readable).
Algorithms