Leetcode_455_分發餅乾_水題

九幽孤翎發表於2020-12-25

12/25

雖然是水題,但我寫了一堆bug,調了十幾分鍾QAQ
class Solution {
    public int findContentChildren(int[] g, int[] s) {
        int stg=0;
        int sts=0;
        Arrays.sort(g);
        Arrays.sort(s);
        while(stg<g.length&&sts<s.length){
            while(g[stg]>s[sts]) {
                if(++sts>=s.length){
                    return stg;
                }
            }
            sts++;
            stg++;
        }
        return stg;
    }
}

相關文章