📌  相关文章
📜  生日蛋糕蜡烛hackerrank解决方案 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:18.889000             🧑  作者: Mango

代码示例3
function birthdayCakeCandles(candles) {
 const max = Math.max(...candles)
 const store = []
  
 for(let i = 0; i < candles.length ; i++) {
     if(candles[i] >= max) {
       store.push(candles[i])
     }
 }
  
  return store.length
}