Assign Cookies

描述

You have 2 children and 3 cookies. The greed factors of 2 children are 1, 2.You have 3 cookies and their sizes are big enough to gratify all of the children,You need to output 2.

Example

Input: [1,2], [1,2,3]
Output: 2

代码

import java.util.Arrays;

public class AssignCookies {
    public static int findContentChildren(int[] g, int[] s) {
        Arrays.sort(g);
        Arrays.sort(s);
        int gIndex = 0, sIndex = 0;
        while (gIndex < g.length && sIndex < s.length) {
            if (g[gIndex] <= s[sIndex])
                gIndex++;
            sIndex++;
        }
        return gIndex;
    }

    public static void main(String[] args) {
        int[] g={2,3};
        int[] s={1,2,3};
        System.out.println(findContentChildren(g,s));
    }
}
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 12,168评论 0 10
  • 目录| 如果你还在 文| 雨焉 穆茹看到了死去的莲子。尽管有所准备,咋一眼看上去,还是被吓得汗毛倒立。 这张亡故者...
    雨焉阅读 3,677评论 0 5
  • 都说有缘才相逢,可我和婆婆,注定是无缘的。 第一次见到婆婆的笑容,是在相亲宴上,虽然笑得甜,眼晴发亮,但却给我一阵...
    篱笆影阅读 3,021评论 5 7
  • 对于姑娘们,寻找爱情的过程某种程度上与编发无异,总有不止一种发式适合你,鱼骨辫、麻花辫、蜈蚣辫,如何抉择是个头...
    雨川阅读 1,342评论 0 1
  • Facades 工作原理# 任何一个类里面,只要有构造函数依赖的,都可以注入 服务提供者里面,registry方法...
    云龙789阅读 11,497评论 0 9

友情链接更多精彩内容