class Solution {
public int findContentChildren(int[] g, int[] s) {
int cnt=0;
int i=g.length-1;
int j=s.length-1;
Arrays.sort(g);
Arrays.sort(s);
while(i>=0 && j>=0) {
if(g[i]==s[j]) {
cnt++; i--; j--;
} else if(g[i]<s[j]) {
cnt++; i--; j--;
} else {
i--;
}
}
return cnt;
}
}
다른 사람들 풀이도 나의 풀이와 거의 동일한 관계로 생략
무난무난 쉬웠던 문제