class Solution { public int findContentChildren(int[] g, int[] s) { int count = 0; // 首先胃口和饼干都要从小到大排列 Arrays.sort(g); Arrays.sort(s); for (int i = 0, j = 0; i < g.length && j < s.length;) { if (g[i] <= s[j]) { i++; j++; count++; } else if (g[i] > s[j]) { j++; } } return count; } }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)