美文网首页
455. Assign Cookies

455. Assign Cookies

作者: becauseyou_90cd | 来源:发表于2018-07-31 04:27 被阅读0次

    https://leetcode.com/problems/assign-cookies/description/
    解题思路:
    对两个数组分别排序,然后从最小的cookies给最小的孩子开始

    class Solution {
    public int findContentChildren(int[] g, int[] s) {
    Arrays.sort(g);
    Arrays.sort(s);
    int child = 0;
    int cookie = 0;
    while(child < g.length && cookie < s.length){
    if(g[child] <= s[cookie]){
    child++;
    }
    cookie++;
    }
    return child;
    }
    }

    相关文章

      网友评论

          本文标题:455. Assign Cookies

          本文链接:https://www.haomeiwen.com/subject/ysfcvftx.html