码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] 101. 对称二叉树

时间:2020-06-01 23:56:33      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:image   col   idt   pre   solution   礼物   inf   http   i++   

这个题真的是lc送给我们的儿童节礼物,简单的甜哈

class Solution {
    public List<Boolean> kidsWithCandies(int[] candies, int extraCandies) {
        int max=candies[0];
        for(int i=1;i<candies.length;i++){
            if(candies[i]>=max){
                max=candies[i];
            }
        }

        List<Boolean> res=new ArrayList<>();
        for(int i=0;i<candies.length;i++){
            if(candies[i]+extraCandies>=max){
                res.add(true);
            }else{
                res.add(false);
            }
        }
        return res;
    }
}

技术图片

 

[LeetCode] 101. 对称二叉树

标签:image   col   idt   pre   solution   礼物   inf   http   i++   

原文地址:https://www.cnblogs.com/doyi111/p/13028134.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!