455. Assign cookies
程序员文章站
2022-06-04 16:09:50
...
问题描述
作为父母,你需要给你的孩子们分饼干,这些饼干有不同的大小,每个孩子都有一个让他们能满意的饼干尺寸大小,求最多能让几个孩子满意呢?
举例
解决方案
class Solution(object):
def findContentChildren(self, g, s):
"""
:type g: List[int]
:type s: List[int]
:rtype: int
"""
m,n = len(g),len(s)
res = 0
g_a = sorted(g)
s_a = sorted(s)
i = 0
j = 0
while i < m and j < n:
if g_a[i] <= s_a[j]:
res += 1
i += 1
j += 1
else:
j += 1
return res
上一篇: 微信自定义菜单的处理开发示例
推荐阅读
-
32 PHP Cookies
-
引用、浅拷贝及深拷贝 到 Map、Set(含对象assign、freeze方法、WeakMap、WeakSet及数组map、reduce等等方法)
-
php实现的Cookies操作类实例_PHP
-
【python】淘宝利用cookies登录,爬取商品信息
-
PHP模板引擎Smarty内置变量调解器用法详解 php smarty 余国荔 smarty assign
-
smarty中assign()这个函数是怎么定义的
-
JS操作Cookies的小例子_javascript技巧
-
IOS中(assign,retain,copy,weak,strong)的区别以及nonatomic的含义
-
c#和net存取cookies操作示例
-
清除WKWebView cookies的方法