728x90
반응형
class Solution {
public int findContentChildren(int[] g, int[] s) {
int answer = 0;
int G=0,S=0;
Arrays.sort(g);
Arrays.sort(s);
while(G < g.length && S < s.length ){
if(g[G] <= s[S]){
G++;
S++;
answer++;
}
else S++;
}
return answer;
}
}
https://leetcode.com/problems/assign-cookies/
728x90
반응형
'Problem Solving' 카테고리의 다른 글
1-6. Pascal's Triangle (LeetCode 118) (0) | 2021.07.07 |
---|---|
1-5. Plus One (LeetCode 66) (0) | 2021.07.07 |
1-4. 평균은 넘겠지 (백준 4344) (0) | 2021.07.07 |
1-2. 스킬트리 (프로그래머스 summer/winter coding 2018) (0) | 2021.07.07 |
1-1. 음계 판별하기 (백준 2920) (2) | 2021.07.07 |
댓글