리트코드 455번
최대한 많은 아이들에게 쿠키 나눠주기
class Solution:
def findContentChildren(self, g: List[int], s: List[int]) -> int:
g.sort()
s.sort()
gp, sp = 0, 0
while gp < len(g) and sp < len(s):
if g[gp] <= s[sp] :
gp += 1
sp += 1
return gp