题目描述
class Solution:
def findContentChildren(self, g: List[int], s: List[int]) -> int:
gs = sorted(g)
ss = sorted(s)
i = 0
j = 0
ret = 0
while i
关注
打赏