LeetCode - Assign Cookies (Javascript)
문제 설명
보유한 쿠키로 총 몇 명의 아이들을 만족시킬 수 있는지 구하는 문제다.
첫 번째 배열 g
에는 아이들별로 몇 개의 쿠키를 받아야 만족할 수 있는지 (쿠키 최소 한도) 담겨있다. 그리고 배열 s
에는 현재 당신이 보유한 쿠키의 개수가 담겨있다.
Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie.
Each child i
has a greed factor g[i]
, which is the minimum size of a cookie that the child will be content with; and each cookie j
has a size s[j]
. If s[j] >= g[i]
, we can assign the cookie j
to the child i
, and the child i
will be content. Your goal is to maximize the number of your content children and output the maximum number.
Example 1:
1 | Input: g = [1,2,3], s = [1,1] |
Example 2:
1 | Input: g = [1,2], s = [1,2,3] |
Constraints:
1 <= g.length <= 3 * 104
0 <= s.length <= 3 * 104
1 <= g[i], s[j] <= 231 - 1
소스 코드
굉장히 간단한 문제였다.
1 | const findContentChildren = (g, s) => { |
LeetCode - Assign Cookies (Javascript)
https://hoonjoo-park.github.io/algorithm/leet/assignCookies/