Skip to content

Latest commit

 

History

History
45 lines (42 loc) · 1.21 KB

findContentChildren.md

File metadata and controls

45 lines (42 loc) · 1.21 KB
/*
假设你是一位很棒的家长,想要给你的孩子们一些小饼干。但是,每个孩子最多只能给一块饼干。
对每个孩子 i,都有一个胃口值 g[i],这是能让孩子们满足胃口的饼干的最小尺寸;并且每块饼干 j,都有一个
尺寸 s[j] 。如果 s[j] >= g[i],我们可以将这个饼干 j 分配给孩子 i ,这个孩子会得到满足。你的目标是
尽可能满足越多数量的孩子,并输出这个最大数值。
 */
/*
输入: g = [1,2,3], s = [1,1]
输出: 1
解释:
你有三个孩子和两块小饼干,3个孩子的胃口值分别是:1,2,3。
虽然你有两块小饼干,由于他们的尺寸都是1,你只能让胃口值是1的孩子满足。
所以你应该输出1。
 */
/**
 * @param {number[]} g
 * @param {number[]} s
 * @return {number}
 */
var findContentChildren = function(g, s) {
  //给g和s排序
  g.sort((a, b) => a - b);
  s.sort((a, b) => a - b);
  let i = 0;
  let j = 0;
  let re = 0;
  while (i < g.length && j < s.length) {
    if (g[i] <= s[j]) {
      re++;
      i++;
      j++;
    } else {
      j++;
    }
  }
  return re;
};

const g = [10, 9, 8, 7],
  s = [5, 6, 7, 8];

console.log(findContentChildren(g, s));