java 来自https://leetcode.com/problems/assign-cookies/#/description

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 来自https://leetcode.com/problems/assign-cookies/#/description相关的知识,希望对你有一定的参考价值。

public class Solution {
    public int findContentChildren(int[] g, int[] s) {
        
        Arrays.sort(g);
        Arrays.sort(s);
        
        int i=0, ans = 0;
        
        for(int j=0 ; i< g.length && j<s.length; j++){
            if(s[j] >= g[i]){
                i++;
            }
        }
        
        return i;
        
    }
}

以上是关于java 来自https://leetcode.com/problems/assign-cookies/#/description的主要内容,如果未能解决你的问题,请参考以下文章

20-05-01

两数之和(LeetCode)

leetcode刷题两数之和

算法leetcode|剑指 Offer 27. 二叉树的镜像|226. 翻转二叉树(rust很强)

算法leetcode|剑指 Offer 27. 二叉树的镜像|226. 翻转二叉树(rust很强)

算法leetcode|剑指 Offer 27. 二叉树的镜像|226. 翻转二叉树(rust很强)