mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
20 lines
447 B
C++
20 lines
447 B
C++
#include <algorithm>
|
|
#include <vector>
|
|
|
|
class Solution {
|
|
public:
|
|
int findContentChildren(std::vector<int> g, std::vector<int> s) {
|
|
std::sort(g.begin(), g.end());
|
|
std::sort(s.begin(), s.end());
|
|
|
|
int content = 0;
|
|
for (int i = 0, j = 0; i < g.size() && j < s.size(); ++j) {
|
|
if (g[i] <= s[j]) {
|
|
++i;
|
|
++content;
|
|
}
|
|
}
|
|
|
|
return content;
|
|
}
|
|
};
|