首页 > 其他 > 详细

拥有最多糖果的孩子

时间:2020-06-11 00:47:40      阅读:66      评论:0      收藏:0      [点我收藏+]

技术分享图片
主要的解题思路:

就是查询列表中的每个数字在加上额外的数字之后可能是当前列表中最大的数据的问题。如果某个数字在加上额外值之后是
最大的数据就将相同索引的数组的值设置为true,否则是false.

主要的解题代码:

/**
 * @param {number[]} candies
 * @param {number} extraCandies
 * @return {boolean[]}
 */
var kidsWithCandies = function(candies, extraCandies) {
    let result = []
    for(let i=0;i<candies.length;i++){
    if(Math.max(...candies,(candies[i]+extraCandies))== (candies[i]+extraCandies)) {
        result.push(true)    
     }else{
        result.push(false) 
     }
    }
     return result;
};

转载来自:
https://leetcode-cn.com/problems/kids-with-the-greatest-number-of-candies/

拥有最多糖果的孩子

原文:https://www.cnblogs.com/panjingshuang/p/13089956.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!